summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
blob: 2f645770ee94779bed82482cff83e280d6bcc4aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#![feature(associated_type_defaults)]

pub trait Solution: Problem {
    type Answer1: std::fmt::Display + Default = String;

    type Answer2: std::fmt::Display + Default = String;

    fn part_1(input: &str) -> Result<Self::Answer1, anyhow::Error>;

    fn part_2(input: &str) -> Result<Self::Answer2, anyhow::Error>;

    fn solve() -> anyhow::Result<()> {
        println!("Day {}", Self::DAY);
        println!("\tpart 1: {}", Self::part_1(Self::INPUT)?);
        println!("\tpart 2: {}\n", Self::part_2(Self::INPUT)?);

        Ok(())
    }
}

pub trait Problem {
    const DAY: u8;

    const INPUT: &'static str;
}