Implementation day 3

This commit is contained in:
2020-12-04 09:19:05 +01:00
parent fa54d448ed
commit 711caf2ed0
4 changed files with 1141 additions and 3 deletions

View File

@@ -19,6 +19,7 @@ pub fn get_implementation(day: usize) -> Box<dyn Solution> {
1 => Box::new(day01::Day01::default()),
2 => Box::new(day02::Day02::default()),
3 => Box::new(day03::Day03::default()),
4 => Box::new(day04::Day04::default()),
_ => panic!("Unsupported day {}", day),
}
}