From 55ebe67ddf1c31e69bcffbfe5a68d7fc47015e26 Mon Sep 17 00:00:00 2001 From: djweber12 Date: Wed, 18 Dec 2024 16:10:41 -0500 Subject: [PATCH] Guess I got lucky with first 1000 and first 1024 giving the same results for part 1 --- 2024/day18/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2024/day18/main.py b/2024/day18/main.py index 58dc7eb..2e49bae 100644 --- a/2024/day18/main.py +++ b/2024/day18/main.py @@ -7,7 +7,7 @@ from python_tools.aoc_utils import * START = [0,0] # INPUTS = ["test.txt", [6,6], 12] -INPUTS = ["input.txt", [70,70,], 1000] +INPUTS = ["input.txt", [70,70,], 1024] END = INPUTS[1] def grid_check(x, i):