Removed comments
This commit is contained in:
parent
8c9ec6cbb1
commit
a5915bde06
|
@ -1,6 +1,5 @@
|
||||||
use aoc_runner_derive::{aoc, aoc_generator};
|
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]>>);
|
type Input = ((usize, usize), Vec<Vec<u8>>, Vec<Vec<[u8; 5]>>);
|
||||||
|
|
||||||
const UP: u8 = 0;
|
const UP: u8 = 0;
|
||||||
|
@ -65,7 +64,6 @@ fn parse(input: &str) -> Input {
|
||||||
}
|
}
|
||||||
|
|
||||||
(pos, map, jumps)
|
(pos, map, jumps)
|
||||||
// (pos, map)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[aoc(day6, part1)]
|
#[aoc(day6, part1)]
|
||||||
|
|
Loading…
Reference in New Issue