Add template code
This commit is contained in:
16
template.py
Normal file
16
template.py
Normal 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)
|
||||
|
||||
Reference in New Issue
Block a user