Solve 2025-02

This commit is contained in:
2025-12-02 11:01:55 +01:00
parent 0ed63a276e
commit 0ec2cf656d
4 changed files with 87 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);