summary refs log tree commit diff homepage
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2016-12-17 01:26:45 -0500
committerJune McEnroe <programble@gmail.com>2016-12-17 01:26:45 -0500
commit4905b7907c7176e5c9d603c50eaf33fa419e78a6 (patch)
tree0252803549b0dc192baf0e18d4bb3b455b502e9f
parentDay 16 (diff)
downloadaoc-4905b7907c7176e5c9d603c50eaf33fa419e78a6.tar.gz
aoc-4905b7907c7176e5c9d603c50eaf33fa419e78a6.zip
Day 16 part 2
-rw-r--r--src/bin/day16.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bin/day16.rs b/src/bin/day16.rs
index 21648b2..247d9fd 100644
--- a/src/bin/day16.rs
+++ b/src/bin/day16.rs
@@ -42,6 +42,7 @@ fn main() {
     io::stdin().read_to_string(&mut input).unwrap();
 
     println!("Part 1: {}", solve(272, input.trim()));
+    println!("Part 2: {}", solve(35651584, input.trim()));
 }
 
 #[test]