chore: fmt

This commit is contained in:
Xavier Morel
2024-12-18 23:31:33 +01:00
parent 8e1f9c7ffc
commit bf1153dfaa
2 changed files with 29 additions and 16 deletions

View File

@@ -121,7 +121,8 @@ impl TryFrom<&str> for State {
// y: input.len(),
// };
// let input: Vec<(Pos, char)> = input
let input: Vec<_> = input.lines()
let input: Vec<_> = input
.lines()
.enumerate()
.flat_map(|(y, l)| {
l.chars().enumerate().filter_map(move |(x, c)| {