init 4 de rest

This commit is contained in:
2020-12-17 08:36:22 +01:00
parent ee85057660
commit b7489ef1ce
18 changed files with 117 additions and 0 deletions

13
day17/day17.py Normal file
View File

@@ -0,0 +1,13 @@
def part1():
file = open("../day3/input.txt")
print(f"Part 1:")
def part2():
file = open("../day10/input_test.txt")
print(f"Part 2:")
if __name__ == "__main__":
part1()
part2()