From c3c2dd5759de5453e38a4fc2a728deda7155eb31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anders=20Engl=C3=B6f=20Ytterstr=C3=B6m?= Date: Thu, 4 Dec 2025 08:03:45 +0100 Subject: [PATCH] Fix aoc lib bug Lost 1h in 2025 day 4 pt 1 for this. :D Apparently, ADJ is not used that often. --- 2025-python/output/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2025-python/output/__init__.py b/2025-python/output/__init__.py index 3f3f0d1..c1861ff 100644 --- a/2025-python/output/__init__.py +++ b/2025-python/output/__init__.py @@ -35,7 +35,7 @@ DDa = { ADJ = [ (-1, -1), (-1, 0), - (1, -1), + (-1, 1), (0, -1), (0, 1), (1, 1),