pub trait ParseInput<'a, const DAY: u32, const PART: u8> {
    type Parsed;

    fn parse_input(&'a self, input: &'a str) -> Self::Parsed;
}
Expand description

Implement this trait to parse the raw input into a more useful type for your Solution to use as input.

See Solution::Input

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors