From a5915bde068969e31efdf171e329d2868c587bd0 Mon Sep 17 00:00:00 2001 From: Jan-Bulthuis Date: Fri, 6 Dec 2024 19:22:14 +0100 Subject: [PATCH] Removed comments --- aoc_2024/src/day6.rs | 2 -- 1 file changed, 2 deletions(-) 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)]