Solve 2024-21

This commit is contained in:
2024-12-21 21:03:50 +01:00
parent c7ba31b24d
commit 4654e84d37
5 changed files with 153 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import { describe, expect, it } from 'bun:test';
import { solveFirst } from './index.ts';
describe('2024-21', () => {
it('first', () => {
const testInput = `029A
980A
179A
456A
379A`;
expect(solveFirst(testInput)).toBe(126384);
});
});