From 000004308b3b81b6738f6cd0b7ca1a9638fd01ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Jane=C5=BEi=C4=8D?= Date: Wed, 14 Dec 2022 10:44:17 +0100 Subject: [PATCH] cleanup: finished all 25 days --- src/bin/25.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/bin/25.rs b/src/bin/25.rs index 4fd24b1..067e679 100644 --- a/src/bin/25.rs +++ b/src/bin/25.rs @@ -25,7 +25,6 @@ pub fn part_two(_input: &str) -> Option { 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); - } }