day9
This commit is contained in:
21
day9/day9.py
Normal file
21
day9/day9.py
Normal 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
1000
day9/input.txt
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user