From ccc1ac511242e2943c4ba90ebbcc4264c6132ede Mon Sep 17 00:00:00 2001 From: trwnh Date: Tue, 8 Dec 2020 21:18:31 -0600 Subject: [PATCH] remove print statement --- 08/08.py | 1 - 1 file changed, 1 deletion(-) diff --git a/08/08.py b/08/08.py index 2e5e205..08ed336 100644 --- a/08/08.py +++ b/08/08.py @@ -40,7 +40,6 @@ def part2(instructions): visited = [] while True: if i in visited: - print(visited) for i in reversed(visited): new_instructions = [instruction for instruction in instructions] if instructions[i][:3] == "jmp":