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