summaryrefslogtreecommitdiffstats
path: root/src/2020/mod.rs
blob: 87c213bc00a196a4540c207128b625cf7dc123f6 (plain) (blame)
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
use anyhow::Context as _;
use std::io::BufRead as _;

pub fn run(day: u8, puzzle: u8) -> anyhow::Result<()> {
    match (day, puzzle) {
        (1, 1) => report_repair(),
        _ => Err(anyhow::anyhow!("unknown puzzle {}-{}", day, puzzle)),
    }
}

fn report_repair() -> anyhow::Result<()> {
    let f = std::fs::File::open("data/1-1.txt")
        .context("couldn't find data file")?;
    let f = std::io::BufReader::new(f);
    let ints: anyhow::Result<Vec<i32>> = f
        .lines()
        .map(|l| {
            l.context("failed to read a line")?
                .parse()
                .context("failed to parse line into an integer")
        })
        .collect();
    let ints = ints?;
    for i in &ints {
        for j in &ints {
            if i + j == 2020 {
                println!("{} + {} = {}", i, j, i * j);
                return Ok(());
            }
        }
    }
    Err(anyhow::anyhow!("no numbers summing to 2020 found"))
}