summary refs log tree commit diff homepage
path: root/2017/src/bin
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2017-12-01 00:46:17 -0500
committerJune McEnroe <june@causal.agency>2020-11-22 00:14:25 -0500
commitdfcd19927b3ab1874eb549439bf6b6c112fc5615 (patch)
tree0d4e13eda53d0f5e7c48ea3b9b9a523279aef191 /2017/src/bin
parentMove to 2016 directory (diff)
downloadaoc-dfcd19927b3ab1874eb549439bf6b6c112fc5615.tar.gz
aoc-dfcd19927b3ab1874eb549439bf6b6c112fc5615.zip
Day 1
Diffstat (limited to '2017/src/bin')
-rw-r--r--2017/src/bin/day01.rs31
1 files changed, 31 insertions, 0 deletions
diff --git a/2017/src/bin/day01.rs b/2017/src/bin/day01.rs
new file mode 100644
index 0000000..ee81d15
--- /dev/null
+++ b/2017/src/bin/day01.rs
@@ -0,0 +1,31 @@
+use std::io::{self, Read};
+
+fn solve(input: &str) -> u32 {
+    let mut sum = 0;
+
+    let chars = input.chars();
+    let nexts = input.chars().cycle().skip(1);
+
+    for (a, b) in chars.zip(nexts) {
+        if a == b {
+            sum += a.to_digit(10).unwrap();
+        }
+    }
+
+    sum
+}
+
+fn main() {
+    let mut input = String::new();
+    io::stdin().read_to_string(&mut input).unwrap();
+
+    println!("Part 1: {}", solve(input.trim()));
+}
+
+#[test]
+fn part1() {
+    assert_eq!(3, solve("1122"));
+    assert_eq!(4, solve("1111"));
+    assert_eq!(0, solve("1234"));
+    assert_eq!(9, solve("91212129"));
+}