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 <programble@gmail.com>2017-12-01 00:46:17 -0500
commit3e9bc7de07585eed4231c8d2feba0b853aa0c013 (patch)
treed07e56a84d3e5e7e3d0d3de16ff30e4d10a64284 /2017/src/bin
parentMove to 2016 directory (diff)
downloadaoc-3e9bc7de07585eed4231c8d2feba0b853aa0c013.tar.gz
aoc-3e9bc7de07585eed4231c8d2feba0b853aa0c013.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"));
+}
href='/catgirl/commit/input.c?h=2.0a&id=35705c9eeb511a61b06fc57b68fba1b738378795&follow=1'>Use first word of params in input commandsJune McEnroe 2019-02-23Add C-n and C-p key bindings to switch windowsJune McEnroe 2019-02-23Change example command to join #ascii.town on freenodeJune McEnroe 2019-02-23Call def_prog_mode after termNoFlowJune McEnroe 2019-02-22Move IRC formatting reset to C-sJune McEnroe 2019-02-22Disable terminal flow controlJune McEnroe 2019-02-22Bind up and down arrows to scrollJune McEnroe 2019-02-22Remove topic TODOJune McEnroe 2019-02-22Add /znc commandJune McEnroe 2019-02-22Update status line after scrolling and term eventsJune McEnroe 2019-02-22Reorganize input.cJune McEnroe 2019-02-22Fix name of <raw> window in man pageJune McEnroe 2019-02-22Rename global tags with angle bracketsJune McEnroe 2019-02-22Show status window while connectingJune McEnroe 2019-02-22Reorganize UI code for the umpteenth timeJune McEnroe 2019-02-21Replace "view" with "window"June McEnroe 2019-02-21Remove ROT13June McEnroe 2019-02-21Clean up man pageJune McEnroe 2019-01-26Draw UI before connectingJune McEnroe 2019-01-25Avoid unused variable warnings with getyxJune McEnroe 2019-01-25Add GNU/Linux build instructionsJune McEnroe