Remove an unneeded variable

This commit is contained in:
2022-01-09 18:41:19 +00:00
parent e29c8b94eb
commit ac039d70e3
2 changed files with 0 additions and 2 deletions

View File

@@ -4,7 +4,6 @@ depth = 0
hPos = 0
with open('input') as f:
window = []
for line in f:
cmd, numStr = line.split(" ", 2)
num = int(numStr)

View File

@@ -5,7 +5,6 @@ hPos = 0
aim = 0
with open('input') as f:
window = []
for line in f:
cmd, numStr = line.split(" ", 2)
num = int(numStr)