Compare commits

...

1 Commits

Author SHA1 Message Date
Daniel S. 2e6180526d Day 2 2020-12-02 14:20:39 +01:00
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 }