Solve 2024-09 (partly)

This commit is contained in:
2024-12-10 13:00:45 +01:00
parent 795d140ba4
commit c543c6f4ac
4 changed files with 155 additions and 0 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);