advent-of-code/py/aoc/y2024/__init__.py
2024-12-11 19:35:44 +01:00

5 lines
56 B
Python

from . import d04
DAYS = {
"2024_04": d04.solve,
}