Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Akuli committed Dec 14, 2023
1 parent cbc2309 commit 44b0fb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/aoc2023/day13/part1.jou
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def main() -> int:
grid = read_grid_from_file(f)
h = find_h_reflection(&grid)
grid.transpose()
v = find_v_reflection(&grid)
v = find_h_reflection(&grid)
free(grid.data)

assert h == -1 or v == -1 # does not have both
Expand Down

0 comments on commit 44b0fb1

Please sign in to comment.