Skip to content

Commit 69c11d8

Browse files
committed
Day 24 fixes
1 parent 22ba36a commit 69c11d8

File tree

4 files changed

+331
-233
lines changed

4 files changed

+331
-233
lines changed

aoc/models/reader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def get_puzzle_input(cls, day: int, *, raw: bool = False) -> str | list[str]:
6060
-------
6161
The puzzle input as a string or list of strings
6262
"""
63-
file_path = cls.PROJECT_ROOT / "data" / f"day{day:02d}.txt"
63+
file_path = cls.PROJECT_ROOT / "data" / f"day{day:02d}" / "puzzle_input.txt"
6464

6565
with Path.open(file_path) as f:
6666
content = f.read()

0 commit comments

Comments
 (0)