Added template + day12 in progress
This commit is contained in:
2
template/common.py
Normal file
2
template/common.py
Normal file
@@ -0,0 +1,2 @@
|
||||
def parse(input_file: str) -> T:
|
||||
pass
|
||||
0
template/example_input.txt
Normal file
0
template/example_input.txt
Normal file
3
template/part1.py
Executable file
3
template/part1.py
Executable file
@@ -0,0 +1,3 @@
|
||||
#!/usr/bin/env python3.11
|
||||
|
||||
from common import *
|
||||
3
template/part2.py
Executable file
3
template/part2.py
Executable file
@@ -0,0 +1,3 @@
|
||||
#!/usr/bin/env python3.11
|
||||
|
||||
from common import *
|
||||
21
template/test.py
Executable file
21
template/test.py
Executable file
@@ -0,0 +1,21 @@
|
||||
#!/usr/bin/env python3.11
|
||||
|
||||
from unittest import TestCase, main
|
||||
import logging
|
||||
from common import *
|
||||
|
||||
|
||||
class DayXTests(TestCase):
|
||||
def test_parsing(self):
|
||||
pass
|
||||
|
||||
def test_part1(self):
|
||||
pass
|
||||
|
||||
def test_part2(self):
|
||||
pass
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
logging.basicConfig(level=logging.DEBUG)
|
||||
main(verbosity=2)
|
||||
Reference in New Issue
Block a user