remove debug enumerate

This commit is contained in:
Luke Hubmayer-Werner 2022-12-16 00:39:06 +10:30
parent 0e3f7c9bc4
commit b79dbd3291
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ def in_range_of_sensors(sensors, x, y):
def do_sensors_2(lines: list[str], search_space: int):
sensors = []
for num, line in enumerate(lines, 1):
for line in lines:
x, y, nx, ny = line_to_numbers(line)
if not ((0 <= x <= 4_000_000) and (0 <= y <= 4_000_000)):
continue