diff --git a/aoc_2024/src/day21.rs b/aoc_2024/src/day21.rs index 55b37f2..b8356d8 100644 --- a/aoc_2024/src/day21.rs +++ b/aoc_2024/src/day21.rs @@ -1,15 +1,14 @@ use std::iter::once; use aoc_runner_derive::{aoc, aoc_generator}; -use hashbrown::{hash_map::Entry, HashMap}; -#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] -struct Path { +#[derive(Debug, Clone, Copy, PartialEq, Eq)] +struct Path { steps: usize, - path: [Option