pub trait SolutionRunner<'a, const DAY: u32, const IMPL: u16> {
    fn run(&'a self, input: &'a str);
}
Expand description

Import this trait to run your advent of code solutions once they implement Solution.

This trait doesn’t need to be implemented outside of this crate.

Blanket implementations are provided that specialize if your solutions share a parsed input type or if MissingPartTwo is implemented.

Required Methods

Implementations on Foreign Types

Implementors