diff --git a/aoc_2024/src/day6.rs b/aoc_2024/src/day6.rs index 8233005..dff8694 100644 --- a/aoc_2024/src/day6.rs +++ b/aoc_2024/src/day6.rs @@ -1,6 +1,5 @@ use aoc_runner_derive::{aoc, aoc_generator}; -// type Input = ((usize, usize), Vec>); type Input = ((usize, usize), Vec>, Vec>); const UP: u8 = 0; @@ -65,7 +64,6 @@ fn parse(input: &str) -> Input { } (pos, map, jumps) - // (pos, map) } #[aoc(day6, part1)]