22 lines
261 B
Python
22 lines
261 B
Python
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()
|