summary refs log tree commit diff homepage
path: root/2017/src/bin
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2017-12-15 13:53:00 -0500
committerJune McEnroe <programble@gmail.com>2017-12-15 13:53:00 -0500
commit2f73e55b7fe3a375425ad49e4f269c9edd427a47 (patch)
tree74a28b32c88d028a7932a0dc197f78cbe5b63b2a /2017/src/bin
parentDay 9, part 2 (diff)
downloadaoc-2f73e55b7fe3a375425ad49e4f269c9edd427a47.tar.gz
aoc-2f73e55b7fe3a375425ad49e4f269c9edd427a47.zip
Day 10
Diffstat (limited to '2017/src/bin')
-rw-r--r--2017/src/bin/day10.rs38
1 files changed, 38 insertions, 0 deletions
diff --git a/2017/src/bin/day10.rs b/2017/src/bin/day10.rs
new file mode 100644
index 0000000..af90961
--- /dev/null
+++ b/2017/src/bin/day10.rs
@@ -0,0 +1,38 @@
+use std::io::{self, Read};
+
+fn reverse(ring: &mut Vec<u32>, index: usize, len: usize) {
+    for i in 0..(len / 2) {
+        let a = (index + i) % ring.len();
+        let b = (index + len - 1 - i) % ring.len();
+        let x = ring[a];
+        ring[a] = ring[b];
+        ring[b] = x;
+    }
+}
+
+fn solve1(size: u32, input: &str) -> u32 {
+    let mut ring: Vec<_> = (0..size).collect();
+    let mut index = 0;
+    let mut skip = 0;
+
+    for len in input.split(',').map(str::parse).map(Result::unwrap) {
+        reverse(&mut ring, index, len);
+        index += len + skip;
+        index %= ring.len();
+        skip += 1;
+    }
+
+    ring[0] * ring[1]
+}
+
+fn main() {
+    let mut input = String::new();
+    io::stdin().read_to_string(&mut input).unwrap();
+
+    println!("Part 1: {}", solve1(256, input.trim()));
+}
+
+#[test]
+fn part1() {
+    assert_eq!(12, solve1(5, "3,4,1,5"));
+}
59f0334c7fb8b99b7a2&follow=1'>Filter extended-joinJune McEnroe 2019-11-10Expand client configuration documentation and list capabilitiesJune McEnroe 2019-11-10Request all supported caps from serverJune McEnroe 2019-11-10Filter ACCOUNT, AWAY, CHGHOST for incapable clientsJune McEnroe 2019-11-10Rename listen to localJune McEnroe 2019-11-09Remove extended-join and invite-notifyJune McEnroe 2019-11-09Maintain stateCaps and offer them to clientsJune McEnroe 2019-11-09Parse capabilitiesJune McEnroe 2019-11-09Avoid the reserved _A names with BIT macroJune McEnroe 2019-11-09Define macro for bit flag enumsJune McEnroe 2019-11-08Check that password is hashedJune McEnroe 2019-11-08Avoid calling getopt_long again after it returns -1June McEnroe 2019-11-08Only change AWAY status for registered clientsJune McEnroe 2019-11-07Just write the example normallyJune McEnroe 2019-11-07Include path in readlinkat errorJune McEnroe 2019-11-07Call clientConsume before clientRecvJune McEnroe 2019-11-06Use -l:filename in Linux.mkJune McEnroe 2019-11-06Fix compat.h for #defined strlcpyJune McEnroe 2019-11-06Allow unsetting LIBRESSL_PREFIXJune McEnroe 2019-11-06Document calico service configurationJune McEnroe 2019-11-06Document SASL EXTERNAL configuration in more detailJune McEnroe 2019-11-06Document pounce service configurationJune McEnroe 2019-11-06Mention Darwin and GNU/Linux in READMEJune McEnroe 2019-11-06Assume LibreSSL from brew on DarwinJune McEnroe 2019-11-06Remove -DNO_EXPLICIT_BZERO from Darwin.mkJune McEnroe 2019-11-06Don't install rc scripts or dirs on LinuxJune McEnroe