[py] Reorganize solution imports
This commit is contained in:
parent
f90e633971
commit
fe30ff3d64
8 changed files with 77 additions and 56 deletions
15
py/aoc/y2018/__init__.py
Normal file
15
py/aoc/y2018/__init__.py
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
from . import d01, d02, d03, d04, d05, d06, d07, d08, d09, d10, d11
|
||||
|
||||
DAYS = {
|
||||
"2018_01": d01.solve,
|
||||
"2018_02": d02.solve,
|
||||
"2018_03": d03.solve,
|
||||
"2018_04": d04.solve,
|
||||
"2018_05": d05.solve,
|
||||
"2018_06": d06.solve,
|
||||
"2018_07": d07.solve,
|
||||
"2018_08": d08.solve,
|
||||
"2018_09": d09.solve,
|
||||
"2018_10": d10.solve,
|
||||
"2018_11": d11.solve,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue