Solve 2025-12, lol
Bun CI / test (push) Successful in 37s

This commit is contained in:
2025-12-12 08:57:17 +01:00
parent 3e3806c1b9
commit c664361b18
5 changed files with 82 additions and 2 deletions
+41
View File
@@ -0,0 +1,41 @@
import { describe, it } from 'bun:test';
describe('2025-12', () => {
it('first', () => {
const testInput = `0:
###
##.
##.
1:
###
##.
.##
2:
.##
###
##.
3:
##.
###
##.
4:
###
#..
###
5:
###
.#.
###
4x4: 0 0 0 0 2 0
12x5: 1 0 1 0 2 2
12x5: 1 0 1 0 3 2`;
// Doesn't work on test data
// expect(solveFirst(testInput)).toBe(2);
});
});