diff options
author | June McEnroe <programble@gmail.com> | 2016-12-21 19:41:01 -0500 |
---|---|---|
committer | June McEnroe <programble@gmail.com> | 2016-12-21 19:41:01 -0500 |
commit | c0f4454152cee8a814ae3cf0fe6c2f0b0b003f49 (patch) | |
tree | e057d8e95a4ba60f0810da3c7b0623b8dc095dbd | |
parent | Day 20 part 2 (diff) | |
download | aoc-c0f4454152cee8a814ae3cf0fe6c2f0b0b003f49.tar.gz aoc-c0f4454152cee8a814ae3cf0fe6c2f0b0b003f49.zip |
Fix day 20 part 2 test
-rw-r--r-- | src/bin/day20.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/day20.rs b/src/bin/day20.rs index 396bb7c..0416ced 100644 --- a/src/bin/day20.rs +++ b/src/bin/day20.rs @@ -73,5 +73,5 @@ fn part2() { 0-2 4-7 "; - assert_eq!(u32::MAX - 8, solve2(input.trim())); + assert_eq!(u32::MAX - 7, solve2(input.trim())); } |