Skip to content

Commit

Permalink
day13: coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-ong committed Dec 27, 2023
1 parent 7f6a4af commit fd9d479
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion day13/day13.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def score(self, row_reflect: Optional[int], col_reflect: Optional[int]) -> int:
return col_reflect
if row_reflect is not None:
return 100 * row_reflect
raise ValueError("expected a mirror!")
raise AssertionError("expected a mirror!")


def read_input(path: str) -> list[Maze]:
Expand Down

0 comments on commit fd9d479

Please sign in to comment.