You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
717 B
Rust

3 weeks ago
/******************************************************************************
* @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<u64, String>
{
Ok(0)
}
fn name(&self) -> String
{
"Day 0".to_string()
}
}
impl Day0
{
pub fn new() -> Day0
{
Day0 {}
}
}