[py] Solve 2024_04 part 1

This commit is contained in:
Joscha 2024-12-11 19:08:19 +01:00
parent 74d10cd770
commit 281a027857
9 changed files with 196 additions and 1 deletions

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

@ -0,0 +1,5 @@
from . import d04
DAYS = {
"2024_04": d04.solve,
}