aoc24/utils.ts

6 lines
135 B
TypeScript
Raw Normal View History

2024-12-04 22:27:23 +01:00
function readInput(day: string): string {
return Deno.readTextFileSync('./inputs/' + day + '.txt').trim()
2024-12-04 22:27:23 +01:00
}
export { readInput };