diff options
| author | June McEnroe <programble@gmail.com> | 2016-12-18 00:49:58 -0500 |
|---|---|---|
| committer | June McEnroe <june@causal.agency> | 2020-11-22 00:14:25 -0500 |
| commit | 49b77cc1805d867b0aec236ec2605cbeb471fb3a (patch) | |
| tree | 39072b70f0dd83b5721abebd89c34d6691f0aa0e | |
| parent | Day 18 (diff) | |
| download | aoc-49b77cc1805d867b0aec236ec2605cbeb471fb3a.tar.gz aoc-49b77cc1805d867b0aec236ec2605cbeb471fb3a.zip | |
Day 18 part 2
| -rw-r--r-- | src/bin/day18.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bin/day18.rs b/src/bin/day18.rs index 658949e..19f8c91 100644 --- a/src/bin/day18.rs +++ b/src/bin/day18.rs @@ -78,6 +78,7 @@ fn main() { io::stdin().read_to_string(&mut input).unwrap(); println!("Part 1: {}", solve(40, &input)); + println!("Part 2: {}", solve(400000, &input)); } #[test] |