summary refs log tree commit diff homepage
path: root/src
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2016-12-05 21:26:13 -0500
committerJune McEnroe <programble@gmail.com>2016-12-05 21:26:13 -0500
commit6728d7479a9491fccfe56995b5e4e711a40657c9 (patch)
tree74d3a81de174ef04032f7537f370a2418c8770e5 /src
parentUse math to rotate in day 4 (diff)
downloadaoc-6728d7479a9491fccfe56995b5e4e711a40657c9.tar.gz
aoc-6728d7479a9491fccfe56995b5e4e711a40657c9.zip
Day 5
Diffstat (limited to 'src')
-rw-r--r--src/bin/day05.rs39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/bin/day05.rs b/src/bin/day05.rs
new file mode 100644
index 0000000..a860e53
--- /dev/null
+++ b/src/bin/day05.rs
@@ -0,0 +1,39 @@
+extern crate crypto;
+
+use std::io::{self, Read};
+
+use crypto::digest::Digest;
+use crypto::md5::Md5;
+
+fn solve(input: &str) -> String {
+    let mut password = String::new();
+    let mut index = 0u64;
+
+    while password.len() < 8 {
+        let mut md5 = Md5::new();
+        md5.input_str(input);
+        md5.input_str(&index.to_string());
+        let digest = md5.result_str();
+
+        if &digest[0..5] == "00000" {
+            password.push_str(&digest[5..6]);
+        }
+
+        index += 1;
+    }
+
+    password
+}
+
+fn main() {
+    let mut input = String::new();
+    io::stdin().read_to_string(&mut input).unwrap();
+
+    println!("Part 1: {}", solve(input.trim()));
+}
+
+#[test]
+#[ignore]
+fn part1() {
+    assert_eq!("18f47a30", solve("abc"));
+}