template 00

This commit is contained in:
a 2020-12-08 19:59:21 -06:00
parent fbdf7129ba
commit 941b7c3229
2 changed files with 16 additions and 0 deletions

16
00/00.py Normal file
View file

@ -0,0 +1,16 @@
def read_file():
with open("input.txt","r") as f:
return f.read().split('\n')
def part1(data):
pass
def part2(data):
pass
def main():
data = read_file()
print(part1(data), part2(data))
if __name__ == "__main__":
main()

0
00/input.txt Normal file
View file