use shared::{Solution, Answer}; pub struct Day22; impl Solution for Day22 { fn part_1(&self, input: &str) -> Answer { Answer::Unimplemented } fn part_2(&self, input: &str) -> Answer { Answer::Unimplemented } }