Prepare future scaffolding.

Also reformat the code, but that is nothing significant.
This commit is contained in:
2018-12-09 13:02:54 +01:00
parent 9b04e3b2c9
commit 9b287a0098
23 changed files with 456 additions and 23 deletions

25
2018/src/day25.rs Normal file
View File

@@ -0,0 +1,25 @@
use std::io::Read;
use common::Solution;
#[derive(Default)]
pub struct Day25 {}
impl Day25 {
pub fn new() -> Self {
Default::default()
}
}
impl Solution for Day25 {
fn part1(&mut self, _input: &mut Read) -> String {
unimplemented!()
}
fn part2(&mut self, _input: &mut Read) -> String {
unimplemented!()
}
}
#[cfg(test)]
mod tests {}