Solve 2024-25

This commit is contained in:
2024-12-25 11:31:41 +01:00
parent a09f9ff219
commit acd66b28ac
4 changed files with 97 additions and 0 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);