Add template code

This commit is contained in:
2021-11-28 17:55:18 +01:00
parent 63e33ae0b3
commit 5ecfa08733

16
template.py Normal file
View File

@@ -0,0 +1,16 @@
#!/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)