mebeim / aoc

🎄 My solutions and walkthroughs for Advent of Code and more related stuff.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Typo in y2023 d17 walkthrough

ismagilli opened this issue · comments

In y2023 d17 pt2 walkthrough should be

-    for _ in range(1, 3 + 1):
+    for i in range(1, stop + 1):

instead of

-    for _ in range(1, 3 + 1):
+    for i in range(start, stop + 1):

Thank you again for spotting the typo! Fixed in d41d8d1.