mirror of
https://github.com/mx42/aoc2024.rs.git
synced 2026-01-14 13:59:52 +01:00
chore: fmt
This commit is contained in:
@@ -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)| {
|
||||
|
||||
Reference in New Issue
Block a user