From cf3a9298d3e8ef7e5fe330ae86b77e7edef67f25 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 d24b464..f78ce66 100644 --- a/2025-python/output/__init__.py +++ b/2025-python/output/__init__.py @@ -34,7 +34,7 @@ DDa = { ADJ = [ (-1, -1), (-1, 0), - (1, -1), + (-1, 1), (0, -1), (0, 1), (1, 1),