Remove useless function

This commit is contained in:
akp 2023-12-08 13:32:47 +00:00
parent 9a78f344b6
commit 7e8d195381
No known key found for this signature in database
GPG key ID: CF8D58F3DEB20755

View file

@ -29,13 +29,6 @@ def one(instr: str):
return i
def are_cursors_at_z(cursors: list[str]) -> bool:
for c in cursors:
if c[-1] != "Z":
return False
return True
def two(instr: str):
instructions, graph = parse(instr)