From be2b7d6384877e78d7c5e03ff2ceb72258cb4a73 Mon Sep 17 00:00:00 2001 From: Isaac Good Date: Wed, 1 Jan 2025 21:37:29 -0800 Subject: [PATCH] Everybody Codes: solve py/2024/10 (add notes) --- everybody_codes/quest_10.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/everybody_codes/quest_10.py b/everybody_codes/quest_10.py index 228e8d8..6152889 100644 --- a/everybody_codes/quest_10.py +++ b/everybody_codes/quest_10.py @@ -125,3 +125,8 @@ def solve_one_simple_block(data: str) -> str: (2, TEST_DATA[0], 1851), (3, TEST_DATA[1], 3889), ] +NOTES = """\ +I had a real hard time solving this because I initially thought that, for every 6x6 block, +you include an additional border made of the *very* first and *very* last row and column vs the adjacent blocks. +I had a hard time understanding why I couldn't get a solution to work. +"""