mirror of
https://github.com/bertptrs/adventofcode.git
synced 2025-12-27 05:40:32 +01:00
Initial 2021 runner
This commit is contained in:
10
2021/src/day01.rs
Normal file
10
2021/src/day01.rs
Normal file
@@ -0,0 +1,10 @@
|
||||
use crate::Solution;
|
||||
|
||||
#[derive(Default)]
|
||||
pub struct Day01;
|
||||
|
||||
impl Solution for Day01 {
|
||||
fn part1(&mut self, _input: &mut dyn std::io::Read) -> String {
|
||||
todo!()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user