Solve 2024-11

This commit is contained in:
2024-12-11 15:30:15 +01:00
parent 69f6f10656
commit 3c9b48b3a6
4 changed files with 111 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import { join } from 'path';
import { solve } from './index.ts';
const input = await Bun.file(join(__dirname, 'input.txt')).text();
const firstAnswer = solve(input, 25);
console.log(firstAnswer);
const secondAnswer = solve(input, 75);
console.log(secondAnswer);