cleanup: finished all 25 days
This commit is contained in:
parent
0000042080
commit
000004308b
|
@ -25,7 +25,6 @@ pub fn part_two(_input: &str) -> Option<u32> {
|
|||
fn main() {
|
||||
let input = &aoc::read_file("inputs", 25);
|
||||
aoc::solve!(1, part_one, input);
|
||||
aoc::solve!(2, part_two, input);
|
||||
}
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
|
@ -35,9 +34,4 @@ mod tests {
|
|||
let input = aoc::read_file("test_inputs", 25);
|
||||
assert_eq!(part_one(&input.trim()), Some(7726640));
|
||||
}
|
||||
#[test]
|
||||
fn test_part_two() {
|
||||
let input = aoc::read_file("test_inputs", 25);
|
||||
assert_eq!(part_two(&input.trim()), None);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue