diff options
author | June McEnroe <programble@gmail.com> | 2016-12-17 01:26:45 -0500 |
---|---|---|
committer | June McEnroe <programble@gmail.com> | 2016-12-17 01:26:45 -0500 |
commit | 4905b7907c7176e5c9d603c50eaf33fa419e78a6 (patch) | |
tree | 0252803549b0dc192baf0e18d4bb3b455b502e9f /src | |
parent | Day 16 (diff) | |
download | aoc-4905b7907c7176e5c9d603c50eaf33fa419e78a6.tar.gz aoc-4905b7907c7176e5c9d603c50eaf33fa419e78a6.zip |
Day 16 part 2
Diffstat (limited to '')
-rw-r--r-- | src/bin/day16.rs | 1 |
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] |