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
+25
View File
@@ -0,0 +1,25 @@
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 value = Number(line.slice(1))
if (prefix == "L" && angle != 0) {
angle = Math.abs(100 - angle)
}
angle += value
let triggers = Math.floor(Math.abs(angle) / 100)
count += triggers
angle %= 100
if (prefix == "L" && angle != 0) {
angle = Math.abs(100 - angle)
}
}
console.log(count)