From 81f55f98ef1ab8b82475dcff418e81dc3a689727 Mon Sep 17 00:00:00 2001 From: Arne Wischer Date: Fri, 6 Dec 2019 14:28:48 +0100 Subject: [PATCH] Fix ranges for day 2 --- days/day2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/days/day2.py b/days/day2.py index f8e1780..18c218f 100644 --- a/days/day2.py +++ b/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