aoc24/utils.ts

8 lines
214 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
}
2024-12-07 23:07:55 +01:00
const delay = (ms: number) => new Promise(res => setTimeout(res, ms));
export { readInput, delay };