This commit is contained in:
Sebastian Seedorf
2020-12-01 22:14:16 +01:00
commit 7c19b98694
8 changed files with 276 additions and 0 deletions

18
day01/part1.py Normal file
View File

@@ -0,0 +1,18 @@
items = [int(x.strip()) for x in open("input.txt")]
lows = []
highs = []
for item in items:
if item < 1010:
lows.append(item)
else:
highs.append(item)
print(lows)
print(highs)
for low in lows:
for high in highs:
if low + high == 2020:
print("Found {} and {}: Sum={} Product={}".format(low, high, low+high, low*high))