diff options
| author | June McEnroe <programble@gmail.com> | 2016-12-17 01:26:45 -0500 |
|---|---|---|
| committer | June McEnroe <june@causal.agency> | 2020-11-22 00:14:25 -0500 |
| commit | cd3a26a9c7731febe03e53e44ce9f7e80fa1d6b6 (patch) | |
| tree | e5bd7e8ac3ccf939a02eb39c46be04046e11766d /src/bin/day16.rs | |
| parent | Day 16 (diff) | |
| download | aoc-cd3a26a9c7731febe03e53e44ce9f7e80fa1d6b6.tar.gz aoc-cd3a26a9c7731febe03e53e44ce9f7e80fa1d6b6.zip | |
Day 16 part 2
Diffstat (limited to 'src/bin/day16.rs')
| -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] |