tangled
alpha
login
or
join now
kot.pink
/
aoc
2
fork
atom
advent of code 2025
2
fork
atom
overview
issues
pulls
pipelines
micro optimization
kot.pink
3 months ago
f19cc6a5
04e3f385
verified
This commit was signed with the committer's
known signature
.
kot.pink
SSH Key Fingerprint:
SHA256:e4bjV3/Jkmz9iPYLTjvwj9VNZdgdgRm8GIc0LYqo0kU=
+2
-1
2 changed files
expand all
collapse all
unified
split
.gitignore
4.py
+1
.gitignore
···
1
1
*.input
2
2
+
.mypy_cache
+1
-1
4.py
···
35
35
while len(removable):
36
36
for (y, x) in removable:
37
37
grid[y][x] = "."
38
38
-
removed_rolls += 1
38
38
+
removed_rolls += len(removable)
39
39
removable = search_removable()
40
40
41
41
print(f'p2: {removed_rolls}')