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
+8
View File
@@ -0,0 +1,8 @@
import { join } from 'path';
import { solveFirst } from './index.ts';
const input = await Bun.file(join(__dirname, 'input.txt')).text();
const firstAnswer = solveFirst(input);
console.log(firstAnswer);