[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

5
py/aoc/y2021/__init__.py Normal file
View file

@ -0,0 +1,5 @@
from . import d14
DAYS = {
"2021_14": d14.solve,
}