This commit is contained in:
Nathan Tien You
2025-12-03 16:43:39 +01:00
parent 4eed10da17
commit b86faabc79
17 changed files with 5196 additions and 2 deletions
+20
View File
@@ -0,0 +1,20 @@
import { open } from 'node:fs/promises';
const file = await open('./2025/inputs/1');
let angle = 50
let count = 0
for await (const line of file.readLines()) {
const prefix = line[0]
const sign = (prefix == "L") ? -1 : 1
const value = Number(line.slice(1)) * sign
angle += value
if (angle < 0) {
angle += 100
}
angle %= 100
if (angle == 0) {
count++
}
}
console.log(count)