Files
aoc/template/index.ts
T
2024-11-27 10:10:41 +01:00

12 lines
176 B
TypeScript

export function solveFirst(input: string): number {
// TODO: add code
return 0;
}
export function solveSecond(input: string): number {
// TODO: add code
return 0;
}