All checks were successful
continuous-integration/drone/push Build is passing
24 lines
403 B
Python
24 lines
403 B
Python
#!/usr/bin/env python3
|
|
from pathlib import Path
|
|
|
|
def part_1(input):
|
|
result = 0
|
|
for line in input:
|
|
pass
|
|
print("Part 1 result:", result)
|
|
|
|
|
|
def part_2(input):
|
|
result = 0
|
|
for line in input:
|
|
pass
|
|
print("Part 2 result:", result)
|
|
|
|
|
|
input = list()
|
|
p = Path(__file__).with_name('input.txt')
|
|
with open(p) as f:
|
|
input = f.readlines()
|
|
part_1(input)
|
|
part_2(input)
|