diff --git a/day01.py b/day01.py index 51b1346..c53f2f5 100644 --- a/day01.py +++ b/day01.py @@ -1,6 +1,6 @@ import aoclib -#my_input = [1721, 979, 366, 299, 675, 1456] # debug input +# my_input = [1721, 979, 366, 299, 675, 1456] # debug input my_input = aoclib.getInputLineAsArray(1, int) globalBreak = False @@ -14,4 +14,3 @@ while len(my_input) > 0: if globalBreak: break - diff --git a/day01_2.py b/day01_2.py index 5a483f6..a0a4234 100644 --- a/day01_2.py +++ b/day01_2.py @@ -1,7 +1,6 @@ import aoclib -import sys -#my_input = [1721, 979, 366, 299, 675, 1456] # debug input +# my_input = [1721, 979, 366, 299, 675, 1456] # debug input my_input = aoclib.getInputLineAsArray(1, int) globalBreak = False @@ -21,4 +20,3 @@ while len(my_input) > 0: if globalBreak: break - diff --git a/main.py b/main.py index 0359e47..1cfbb36 100644 --- a/main.py +++ b/main.py @@ -7,4 +7,3 @@ for _, _, files in os.walk(aoclib.BASE_PATH): exec(open(f).read()) break -