impl day 2 + simplification, woops implemented the wrong pattern checker

This commit is contained in:
Leonard Lorenz 2025-12-02 23:04:26 +01:00
parent f33dda8916
commit 4fba52d596
4 changed files with 50 additions and 10 deletions

View file

@ -13,7 +13,9 @@ const solvables: Solvable[] = [];
// only solve the latest day
console.log("Solving latest day only:")
const day = solvables.toReversed()[0];
const day = solvables[0];
console.log(day)
day.part1()
day.part2()
})()