summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
blob: 1931045c948bc4e8de2c2855053d2fd790b2b75e (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#![feature(iterator_try_collect)]
#![feature(iter_next_chunk)]
#![feature(if_let_guard)]
#![feature(map_try_insert)]
#![feature(associated_type_defaults)]

pub mod day_01;
pub mod day_02;
pub mod day_03;
pub mod day_04;
pub mod day_05;
pub mod day_06;
pub mod day_07;
pub mod day_08;
pub mod day_09;
pub mod day_10;
pub mod day_11;
pub mod day_12;

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 {}.1", Self::DAY);
        println!("{}", Self::part_1(Self::INPUT)?);

        println!();
        println!("Day {}.2", Self::DAY);
        println!("{}\n", Self::part_2(Self::INPUT)?);

        Ok(())
    }
}

pub trait Problem {
    const DAY: u8;

    const INPUT: &'static str;
}