Skip to content

Commit

Permalink
Fix aoc2023 day22
Browse files Browse the repository at this point in the history
  • Loading branch information
vipentti committed Dec 30, 2023
1 parent a6262a2 commit 2f7d412
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion visp/examples/aoc2023/day22.visp
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@
(let c5 (< (Y lhs_max) (Y rhs_min)))
(let c6 (< (Y rhs_max) (Y lhs_min)))

(not (-|| c1 c2 c3 c4 c5 c6)))
(not (|| c1 c2 c3 c4 c5 c6)))

(fn inline IntersectsXY ([lhs: Brick] [rhs: Brick])
(let (lhs_min, lhs_max) (+Original lhs))
Expand Down

0 comments on commit 2f7d412

Please sign in to comment.