mirror of
https://github.com/cupcakearmy/advent-of-code.git
synced 2024-12-21 23:56:30 +00:00
remove print
This commit is contained in:
parent
0ba1f371ed
commit
84e32bfaea
@ -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)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user