summary refs log tree commit diff homepage
path: root/2017/src/bin/day05.rs
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2017-12-05 00:17:39 -0500
committerJune McEnroe <june@causal.agency>2020-11-22 00:14:25 -0500
commit268fcb9cefbe543c18c659b1b2039340ec022edd (patch)
treec0f8ed31a2421af08e89a8f556c5392a4142b7d5 /2017/src/bin/day05.rs
parentDay 4, part 2 (diff)
downloadaoc-268fcb9cefbe543c18c659b1b2039340ec022edd.tar.gz
aoc-268fcb9cefbe543c18c659b1b2039340ec022edd.zip
Day 5
Diffstat (limited to '2017/src/bin/day05.rs')
-rw-r--r--2017/src/bin/day05.rs31
1 files changed, 31 insertions, 0 deletions
diff --git a/2017/src/bin/day05.rs b/2017/src/bin/day05.rs
new file mode 100644
index 0000000..b8e21d9
--- /dev/null
+++ b/2017/src/bin/day05.rs
@@ -0,0 +1,31 @@
+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 main() {
+    let mut input = String::new();
+    io::stdin().read_to_string(&mut input).unwrap();
+
+    println!("Part 1: {}", solve1(&input));
+}
+
+#[test]
+fn part1() {
+    assert_eq!(5, solve1("0\n3\n0\n1\n-3\n"));
+}