Skip to content

Commit

Permalink
fix mypy error
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasrenault committed Dec 18, 2024
1 parent 7d6e0d9 commit ae3aec3
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion advent/advent2024/day16.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def main():


def neighbors(
grid: npt.NDArray[np.int_],
grid: npt.NDArray[np.str_],
node: tuple[int, int, str],
) -> Iterator[tuple[tuple[int, int, str], int]]:
r, c, dir = node
Expand Down
12 changes: 12 additions & 0 deletions advent/advent2024/day17.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
from advent.utils.utils import Advent

advent = Advent(17, 2024)


def main():
# lines = advent.get_input_lines()
pass


if __name__ == "__main__":
main()

0 comments on commit ae3aec3

Please sign in to comment.