We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55b7f61 commit 99972b8Copy full SHA for 99972b8
src/year2024/day13.rs
@@ -15,8 +15,8 @@
15
//! ```
16
//!
17
//! To solve we invert the 2 x 2 matrix then premultiply the right column.
18
-use crate::util::parse::*;
19
use crate::util::iter::*;
+use crate::util::parse::*;
20
21
type Claw = [i64; 6];
22
src/year2024/day15.rs
@@ -130,7 +130,7 @@ fn wide(
130
index += 1;
131
132
let other = match grid[next] {
133
- b'#' => return, // Return early if there's a wall in the way.
+ b'#' => return, // Return early if there's a wall in the way.
134
b'[' => RIGHT,
135
b']' => LEFT,
136
_ => continue, // Open space doesn't add any more items to move.
0 commit comments