first solution

This commit is contained in:
2025-02-02 23:52:26 +01:00
parent 69e937d98e
commit b768376ff0
3 changed files with 92 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
// See https://www.chaijs.com for how to use Chai.
import { assert } from "chai";
import { solution } from "./solution";
describe('Example test', function() {
it('[6,9,12]', () => assert.strictEqual(solution([6,9,21]),9));
});