template 00
This commit is contained in:
parent
fbdf7129ba
commit
941b7c3229
16
00/00.py
Normal file
16
00/00.py
Normal 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
0
00/input.txt
Normal file
Loading…
Reference in a new issue