17 lines
182 B
Python
17 lines
182 B
Python
#!/usr/bin/python3
|
|
|
|
def part_1(input):
|
|
pass
|
|
|
|
|
|
def part_2(input):
|
|
pass
|
|
|
|
input = list();
|
|
with open('input.txt') as fp:
|
|
input = fp.readlines()
|
|
|
|
part_1(input)
|
|
part_2(input)
|
|
|