summary refs log tree commit diff homepage
path: root/src
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 /src
parentDay 16 (diff)
downloadaoc-4905b7907c7176e5c9d603c50eaf33fa419e78a6.tar.gz
aoc-4905b7907c7176e5c9d603c50eaf33fa419e78a6.zip
Day 16 part 2
Diffstat (limited to 'src')
-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]
gs to generate tags for make and mdocJune McEnroe 2021-01-19Map tags to IDs using only [[:alnum:]-._]June McEnroe 2021-01-19Don't use a pager if reading standard inputJune McEnroe 2021-01-19Support BSD make syntax and match *.amJune McEnroe These don't really go together, but... 2021-01-19Match tab following escaped newline in make assignmentsJune McEnroe Otherwise it ends up going into Shell state. 2021-01-18Allow matching lexers using first input lineJune McEnroe