day-18 part 1 clippied

This commit is contained in:
Dylan Thies
2023-12-19 07:40:32 -05:00
parent 609a68583e
commit 5842e18ea4

View File

@@ -37,7 +37,7 @@ pub fn part1(input: &str) -> String {
let (_, steps) = parse_input(input).expect("valid aoc content not found"); let (_, steps) = parse_input(input).expect("valid aoc content not found");
let mut cursor = IVec2::splat(0); let mut cursor = IVec2::splat(0);
let mut grid = HashMap::from([(IVec2::splat(0), '#')]); let mut grid = HashMap::from([(IVec2::splat(0), '#')]);
steps.iter().for_each(|step| { for step in &steps {
match step.direction { match step.direction {
Direction::Up => { Direction::Up => {
(1..=step.count).for_each(|x| { (1..=step.count).for_each(|x| {
@@ -68,7 +68,7 @@ pub fn part1(input: &str) -> String {
cursor += IVec2::new(step.count, 0); cursor += IVec2::new(step.count, 0);
} }
}; };
}); }
let (min_x, min_y, max_x, max_y) = grid.keys().fold( let (min_x, min_y, max_x, max_y) = grid.keys().fold(
(i32::MAX, i32::MAX, i32::MIN, i32::MIN), (i32::MAX, i32::MAX, i32::MIN, i32::MIN),
|(min_x, min_y, max_x, max_y), pos| { |(min_x, min_y, max_x, max_y), pos| {