cleanup: finished all 25 days

This commit is contained in:
Matej Janezic 2022-12-14 10:44:17 +01:00
parent 0000042080
commit 000004308b
Signed by: janezicmatej
GPG Key ID: 4298E230ED37B2C0
1 changed files with 0 additions and 6 deletions

View File

@ -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);
}
}