Solve 2025-10, add z3 solver

This commit is contained in:
2025-12-10 13:40:56 +01:00
parent 875e5c1680
commit 204e42236e
7 changed files with 150 additions and 1 deletions
+8
View File
@@ -0,0 +1,8 @@
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);