[py] Reorganize solution imports

This commit is contained in:
Joscha 2024-12-11 18:40:54 +01:00
parent f90e633971
commit fe30ff3d64
8 changed files with 77 additions and 56 deletions

9
py/aoc/y2015/__init__.py Normal file
View file

@ -0,0 +1,9 @@
from . import d01, d02, d03, d04, d05
DAYS = {
"2015_01": d01.solve,
"2015_02": d02.solve,
"2015_03": d03.solve,
"2015_04": d04.solve,
"2015_05": d05.solve,
}