Prepare day 6

This commit is contained in:
2020-12-05 13:16:14 +01:00
parent 77f20fb368
commit b38a1ddff9
2 changed files with 14 additions and 0 deletions

12
2020/src/day06.rs Normal file
View File

@@ -0,0 +1,12 @@
use std::io::Read;
use crate::Solution;
#[derive(Default)]
pub struct Day06;
impl Solution for Day06 {
fn part1(&mut self, input: &mut dyn Read) -> String {
todo!()
}
}