25 lines
244 B
Python
25 lines
244 B
Python
|
file= ".txt"
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
def part_one(file):
|
||
|
input = open(file, 'r')
|
||
|
result = 0
|
||
|
|
||
|
print(f"Part 1: {result}")
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
def part_two(file):
|
||
|
input = open(file, 'r')
|
||
|
result = 0
|
||
|
|
||
|
print(f"Part 2: {result}")
|
||
|
|
||
|
|
||
|
|
||
|
part_one(file)
|
||
|
part_two(file)
|