mirror of
https://github.com/cupcakearmy/advent-of-code.git
synced 2025-09-05 14:50:39 +00:00
remove print
This commit is contained in:
@@ -63,7 +63,6 @@ class Map:
|
|||||||
for y, line in enumerate(raw.splitlines()):
|
for y, line in enumerate(raw.splitlines()):
|
||||||
for x, f in enumerate(line):
|
for x, f in enumerate(line):
|
||||||
if f == "^":
|
if f == "^":
|
||||||
print(f"FOUND! {x} {y}")
|
|
||||||
position = (y, x)
|
position = (y, x)
|
||||||
return Map(fields, position, direction)
|
return Map(fields, position, direction)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user