This commit is contained in:
2020-12-09 09:04:30 +01:00
parent 441fcc525c
commit 3a6f8da27c
3 changed files with 1022 additions and 0 deletions

1
.gitignore vendored
View File

@@ -1,2 +1,3 @@
.idea/ .idea/
venv/ venv/
**/input_test.txt

21
day9/day9.py Normal file
View File

@@ -0,0 +1,21 @@
def part1():
file = open("input.txt")
for line in file:
pass
print("Part 1: %d")
def part2():
file = open("input.txt")
for line in file:
pass
print("Part 2: %d")
if __name__ == "__main__":
part1()
part2()

1000
day9/input.txt Normal file

File diff suppressed because it is too large Load Diff