Removed input file and updated day1
This commit is contained in:
parent
9b0b33e66d
commit
471ce6b894
File diff suppressed because it is too large
Load Diff
|
@ -1,5 +1,5 @@
|
||||||
def main():
|
def main():
|
||||||
with open('calories', 'r') as f:
|
with open('inputs/input1.txt', 'r') as f:
|
||||||
# Part 1
|
# Part 1
|
||||||
calories = [line for line in f.read().split('\n')]
|
calories = [line for line in f.read().split('\n')]
|
||||||
caloriesPerDay = [0] * len(calories)
|
caloriesPerDay = [0] * len(calories)
|
||||||
|
|
Loading…
Reference in New Issue