Day 6 completed, part1.py is now executable

This commit is contained in:
2024-12-01 17:57:00 +01:00
parent ae98a486a9
commit d800679291
4 changed files with 44 additions and 0 deletions

3
day6/common.py Normal file
View File

@@ -0,0 +1,3 @@
def parse(filename: str):
with open(filename) as f:
return f.readline()[:-1]