Files
Pascal c664361b18
Bun CI / test (push) Successful in 37s
Solve 2025-12, lol
2025-12-12 08:57:17 +01:00

9 lines
205 B
TypeScript

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);