Fix testing output

This commit is contained in:
2024-12-02 13:11:48 +01:00
parent 8e1060e6a4
commit b5fd8a73fa
4 changed files with 9 additions and 20 deletions
+1 -5
View File
@@ -1,12 +1,8 @@
import { join } from 'path';
import { solveFirst, solveSecond } from './index.ts';
import { solveFirst } 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);