Solve 2024-15

This commit is contained in:
2024-12-15 16:11:37 +01:00
parent c0838dc944
commit 25f3706e0f
5 changed files with 426 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
import { join } from 'path';
import { solveFirst, solveSecond } from './index.ts';
const input = await Bun.file(join(__dirname, 'input.txt')).text();
const firstAnswer = solveFirst(input);
console.log(firstAnswer);
const secondAnswer = solveSecond(input);
console.log(secondAnswer);