This commit is contained in:
Daniel S. 2020-12-02 14:20:39 +01:00
parent b9e3aff8f4
commit 2e6180526d
2 changed files with 3 additions and 2 deletions

View File

@ -17,7 +17,7 @@ pub fn solve_part1(input: &Vec<usize>) -> usize {
}
}
}
unimplemented!();
panic!("No pair summed to 20202!");
}
@ -36,5 +36,5 @@ pub fn solve_part2(input: &Vec<usize>) -> usize {
}
}
}
unimplemented!();
panic!("No triplet summed to 20202!");
}

View File

@ -1,3 +1,4 @@
use aoc_runner_derive::aoc_lib;
pub mod day1;
pub mod day2;
aoc_lib! { year = 2020 }