14 lines
205 B
Python
14 lines
205 B
Python
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()
|