Removed comments

This commit is contained in:
Jan-Bulthuis 2024-12-06 19:22:14 +01:00
parent 8c9ec6cbb1
commit a5915bde06
1 changed files with 0 additions and 2 deletions

View File

@ -1,6 +1,5 @@
use aoc_runner_derive::{aoc, aoc_generator};
// type Input = ((usize, usize), Vec<Vec<u8>>);
type Input = ((usize, usize), Vec<Vec<u8>>, Vec<Vec<[u8; 5]>>);
const UP: u8 = 0;
@ -65,7 +64,6 @@ fn parse(input: &str) -> Input {
}
(pos, map, jumps)
// (pos, map)
}
#[aoc(day6, part1)]