Files
adventofcode/2018/src/day23.rs
Bert Peters 9b287a0098 Prepare future scaffolding.
Also reformat the code, but that is nothing significant.
2018-12-09 13:02:54 +01:00

26 lines
387 B
Rust

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