26 lines
268 B
Python
26 lines
268 B
Python
day =""
|
|
file= f"inputs/day{day}.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) |