/****************************************************************************** * @file day_0.rs * @author Joey Pollack * @date 2025/11/20 (y/m/d) * @modified 2025/11/20 (y/m/d) * @copyright Joseph R Pollack (2025) * @brief pre-advent testing ******************************************************************************/ use solver::solver::Solver; pub struct Day0; impl Solver for Day0 { fn init(&mut self, _config: solver::solver::SolverState) -> Result<(), String> { return Ok(()) // todo!("Day0::init()") } fn solve(&mut self, _input: String) -> Result { Ok(0) } fn name(&self) -> String { "Day 0".to_string() } } impl Day0 { pub fn new() -> Day0 { Day0 {} } }