init d15p1

This commit is contained in:
Baipyrus 2023-12-15 20:28:29 +01:00
parent 4e98de4101
commit 774fd15ec4
2 changed files with 9 additions and 0 deletions

8
Day15/Part1.js Normal file
View File

@ -0,0 +1,8 @@
import { readFileSync } from "fs";
const t0 = performance.now();
const input = readFileSync("input.txt").toString();
console.log(input);
const t1 = performance.now();
console.log(`Runtime: ${t1 - t0}ms`);

1
Day15/input.txt Normal file

File diff suppressed because one or more lines are too long