Fix ranges for day 2

master
Arne Wischer 6 years ago
parent a012897cee
commit 81f55f98ef
  1. 2
      days/day2.py

@ -16,7 +16,7 @@ class Day2(unittest.TestCase):
def test_day2b(self):
with open(self.inputfile) as fp:
file_code = [int(k) for k in fp.readline().split(',')]
for a, b in [(x, y) for x in range(55) for y in range(70)]:
for a, b in [(x, y) for x in range(100) for y in range(100)]:
code = list(file_code)
code[1] = a
code[2] = b

Loading…
Cancel
Save