From fdddfad2291de137898fa492a0ce884b5cbd0488 Mon Sep 17 00:00:00 2001 From: Colin Sullivan Date: Sat, 10 Dec 2022 16:59:23 +0000 Subject: [PATCH] remove debug lines --- src/advent_of_code/day10/part2.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/advent_of_code/day10/part2.py b/src/advent_of_code/day10/part2.py index 1d35af2..5189a34 100644 --- a/src/advent_of_code/day10/part2.py +++ b/src/advent_of_code/day10/part2.py @@ -30,9 +30,6 @@ def get_pixel_val(sprite_location: np.ndarray, curr_cycle: int) -> str: - old_cycle = curr_cycle - if old_cycle == 175: - old_cycle if curr_cycle > 40: curr_cycle = curr_cycle % 40 if any(sprite_location == curr_cycle - 1):