Files
Advent-of-code/16.1.ts
T
2023-12-16 23:09:09 +01:00

9 lines
233 B
TypeScript

import { open } from 'node:fs/promises';
const file = await open('./inputs/16');
let input = (await file.readFile()).toString().split('\n')
function ray(position: { x: number, y: number }, direction: { x: number, y: number }) {
}