diff options
author | June McEnroe <programble@gmail.com> | 2016-12-18 19:02:41 -0500 |
---|---|---|
committer | June McEnroe <programble@gmail.com> | 2016-12-18 19:02:41 -0500 |
commit | 24e7f1ebfac8a1a00d5bec185234c6374009a54c (patch) | |
tree | 14581541dc665c119837c6f19ae4bf72288f95eb /src | |
parent | Fuck day 11 (diff) | |
download | aoc-24e7f1ebfac8a1a00d5bec185234c6374009a54c.tar.gz aoc-24e7f1ebfac8a1a00d5bec185234c6374009a54c.zip |
Fuck day 11 part 2
Diffstat (limited to '')
-rw-r--r-- | src/bin/day11.rs | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/src/bin/day11.rs b/src/bin/day11.rs index ac37592..c033766 100644 --- a/src/bin/day11.rs +++ b/src/bin/day11.rs @@ -161,7 +161,20 @@ fn main() { floors[2].objects.insert(Object::Microchip(RUTHENIUM)); floors[2].objects.insert(Object::Microchip(PLUTONIUM)); - println!("Part 1: {}", solve(floors)); + println!("Part 1: {}", solve(floors.clone())); + + + // An elerium generator. + // An elerium-compatible microchip. + // A dilithium generator. + // A dilithium-compatible microchip. + const ELERIUM: u8 = 5; + const DILITHIUM: u8 = 6; + floors[0].objects.insert(Object::Generator(ELERIUM)); + floors[0].objects.insert(Object::Microchip(ELERIUM)); + floors[0].objects.insert(Object::Generator(DILITHIUM)); + floors[0].objects.insert(Object::Microchip(DILITHIUM)); + println!("Part 2: {}", solve(floors)); } #[test] |