5 lines
128 B
TypeScript
5 lines
128 B
TypeScript
function readInput(day: string): string {
|
|
return Deno.readTextFileSync('./inputs/' + day + '.txt')
|
|
}
|
|
|
|
export { readInput };
|