Implement day 24.

This commit is contained in:
2018-11-22 15:59:51 +01:00
parent b35d785d69
commit 37f9e696bc
5 changed files with 166 additions and 1 deletions

View File

@@ -59,7 +59,9 @@ pub trait Solution {
fn part1(&mut self, input: &mut io::Read) -> String;
/// Solve the second part of the day
fn part2(&mut self, input: &mut io::Read) -> String;
fn part2(&mut self, _input: &mut io::Read) -> String {
panic!("Not implemented yet.");
}
}
#[derive(Default)]