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