summary refs log tree commit diff homepage
path: root/2017/src/bin/day05.rs
blob: e96138e8629904452549f42715161163983a6be5 (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
54
55
56
57
58
59
use std::io::{self, Read};

fn solve1(input: &str) -> u32 {
    let mut jumps: Vec<isize> = input.lines()
        .map(str::parse)
        .map(Result::unwrap)
        .collect();

    let mut index = 0isize;
    for step in 0.. {
        if index < 0 || index >= jumps.len() as isize {
            return step;
        }
        let jump = &mut jumps[index as usize];
        index += *jump;
        *jump += 1;
    }
    unreachable!()
}

fn solve2(input: &str) -> u32 {
    let mut jumps: Vec<isize> = input.lines()
        .map(str::parse)
        .map(Result::unwrap)
        .collect();

    let mut index = 0isize;
    for step in 0.. {
        if index < 0 || index >= jumps.len() as isize {
            return step;
        }
        let jump = &mut jumps[index as usize];
        index += *jump;
        if *jump >= 3 {
            *jump -= 1;
        } else {
            *jump += 1;
        }
    }
    unreachable!()
}

fn main() {
    let mut input = String::new();
    io::stdin().read_to_string(&mut input).unwrap();

    println!("Part 1: {}", solve1(&input));
    println!("Part 2: {}", solve2(&input));
}

#[test]
fn part1() {
    assert_eq!(5, solve1("0\n3\n0\n1\n-3\n"));
}

#[test]
fn part2() {
    assert_eq!(10, solve2("0\n3\n0\n1\n-3\n"));
}
13:08 -0400'>2024-06-10Cope with not having an EXIF infoJune McEnroe 2024-06-10Resize using target pixel counts for consistencyJune McEnroe This will resize film scans to about the same size as for the digital photos. 2024-06-10Add The Girl Who Was Convinced...June McEnroe Not much there. The illustrations are very nice though. 2024-06-09Add photos from May 31June McEnroe 2024-06-09Use monospace on photo pagesJune McEnroe 2024-06-09Put lens and (future) film at the tops of photo pagesJune McEnroe 2024-05-22Remove use of sysexits.hJune McEnroe 2024-05-22Add photo descriptions from 05-03 and 05-06June McEnroe 2024-05-21Fix = precedence in whenJune McEnroe