finished day 4.

This commit is contained in:
gabe 2022-12-04 00:41:09 -06:00
parent 05d08c134b
commit c92c8843e9
15 changed files with 1188 additions and 19 deletions

15
src/day05/part2.rs Normal file
View file

@ -0,0 +1,15 @@
use crate::utilities::*;
pub fn part2() -> usize {
unimplemented!()
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_part2() {
assert_eq!(part2(), 0);
}
}