summaryrefslogtreecommitdiffstats
path: root/src/2020/mod.rs
blob: 27e56fcdcc8194ba65be80bb186131c024abbdec (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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(),
        (1, 2) => report_repair_2(),
        _ => Err(anyhow::anyhow!("unknown puzzle {}-{}", day, puzzle)),
    }
}

fn report_repair() -> anyhow::Result<()> {
    let ints = read_ints("data/1.txt")?;
    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"))
}

fn report_repair_2() -> anyhow::Result<()> {
    let ints = read_ints("data/1.txt")?;
    for i in &ints {
        for j in &ints {
            for k in &ints {
                if i + j + k == 2020 {
                    println!("{} * {} * {} = {}", i, j, k, i * j * k);
                    return Ok(());
                }
            }
        }
    }
    Err(anyhow::anyhow!("no numbers summing to 2020 found"))
}

fn read_ints(filename: &str) -> anyhow::Result<Vec<i32>> {
    let f = std::fs::File::open(filename)
        .with_context(|| format!("couldn't find data file {}", filename))?;
    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();
    ints
}