Initial
This commit is contained in:
commit
284f099d3e
22 changed files with 1717 additions and 0 deletions
20
src/days/day__/mod.rs
Normal file
20
src/days/day__/mod.rs
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
use anyhow::Result;
|
||||
|
||||
use super::template::{Day, ResultType};
|
||||
|
||||
pub struct Day;
|
||||
const DAY_NUMBER: usize = 0;
|
||||
|
||||
impl DayTemplate for Day {
|
||||
fn get_day_number(&self) -> usize {
|
||||
DAY_NUMBER
|
||||
}
|
||||
|
||||
fn part1(&self, lines: String) -> Result<ResultType> {
|
||||
Ok(ResultType::NoResult)
|
||||
}
|
||||
|
||||
fn part2(&self, lines: String) -> Result<ResultType> {
|
||||
Ok(ResultType::NoResult)
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue