Day 2 completed
This commit is contained in:
5
template/common.py
Normal file
5
template/common.py
Normal file
@@ -0,0 +1,5 @@
|
||||
from typing import Any
|
||||
|
||||
|
||||
def parse(filename: str) -> Any | None:
|
||||
pass
|
||||
14
template/part1.py
Normal file
14
template/part1.py
Normal file
@@ -0,0 +1,14 @@
|
||||
from common import parse
|
||||
|
||||
|
||||
def solve():
|
||||
pass
|
||||
|
||||
|
||||
def main():
|
||||
r = solve()
|
||||
print(r)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
14
template/part2.py
Normal file
14
template/part2.py
Normal file
@@ -0,0 +1,14 @@
|
||||
from common import parse
|
||||
|
||||
|
||||
def solve():
|
||||
pass
|
||||
|
||||
|
||||
def main():
|
||||
r = solve()
|
||||
print(r)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
Reference in New Issue
Block a user