about summary refs log tree commit diff
path: root/day02.rs
blob: 3c5b9b55a47b173715eff20df2b38e6bff9643c2 (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 std::fs::File;
use std::io::{BufRead, BufReader};

fn appears(s: &str, n: usize) -> bool {
    s.chars().any(|c| s.matches(c).count() == n)
}

fn same_but_one(s: &str, t: &str) -> Option<String> {
    let mut x = s.chars().zip(t.chars()).enumerate().filter(|(_, (a,b))| a != b);
    match (x.next(), x.next()) {
        (Some(m), None) => Some(format!("{}{}", &s[..m.0], &s[m.0+1..])),
        _ => None
    }
}

fn main() {
    let f = File::open("day02").unwrap();

    let v: Vec<_> = BufReader::new(&f).lines().map(|l| l.unwrap()).collect();

    println!("{}",
             v.iter().filter(|s| appears(s, 2)).count() *
             v.iter().filter(|s| appears(s, 3)).count());

    'outer: for x in &v {
        for y in &v {
            if let Some(s) = same_but_one(&x, &y) {
                println!("{}", s);
                break 'outer;
            }
        }
    }
}