Fix aoc lib bug
Lost 1h in 2025 day 4 pt 1 for this. :D Apparently, ADJ is not used that often.
This commit is contained in:
parent
8a1910e174
commit
d1a1ce775e
1 changed files with 1 additions and 1 deletions
|
|
@ -34,7 +34,7 @@ DDa = {
|
||||||
ADJ = [
|
ADJ = [
|
||||||
(-1, -1),
|
(-1, -1),
|
||||||
(-1, 0),
|
(-1, 0),
|
||||||
(1, -1),
|
(-1, 1),
|
||||||
(0, -1),
|
(0, -1),
|
||||||
(0, 1),
|
(0, 1),
|
||||||
(1, 1),
|
(1, 1),
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue