Day 5 template

This commit is contained in:
Jonas Neugebauer
2020-12-11 08:56:11 +01:00
parent 8e18d2c8e5
commit da703a6386
2 changed files with 809 additions and 0 deletions

4
2020/day5_1.py Normal file
View File

@@ -0,0 +1,4 @@
input = []
with open('day5_input.txt', 'r') as f:
for line in f.readlines():
input.append(line.strip())