day9
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
.idea/
|
||||
venv/
|
||||
**/input_test.txt
|
||||
|
||||
@@ -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
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user