aoc24/main.ts

19 lines
485 B
TypeScript
Raw Permalink Normal View History

2024-12-04 22:27:23 +01:00
import type { Solvable } from "./solvable.ts";
const solutionFiles = Deno.readDirSync('./solutions');
const solvables: Solvable[] = [];
// need to wrap this stuff in a function to not trip the top level await
(async () => {
// cool dynamic module loading
2024-12-07 23:07:55 +01:00
for (const solution of solutionFiles) {
2024-12-04 22:27:23 +01:00
await import('./solutions/' + solution.name)
}
2024-12-08 00:41:59 +01:00
// only solve the latest day
solvables.toReversed()[0].part1().then(solvable => solvable.part2())
2024-12-04 22:27:23 +01:00
})()
export { solvables }