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