summary refs log tree commit diff homepage
path: root/src/bin/day20.rs
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2016-12-21 19:41:01 -0500
committerJune McEnroe <programble@gmail.com>2016-12-21 19:41:01 -0500
commitc0f4454152cee8a814ae3cf0fe6c2f0b0b003f49 (patch)
treee057d8e95a4ba60f0810da3c7b0623b8dc095dbd /src/bin/day20.rs
parentDay 20 part 2 (diff)
downloadaoc-c0f4454152cee8a814ae3cf0fe6c2f0b0b003f49.tar.gz
aoc-c0f4454152cee8a814ae3cf0fe6c2f0b0b003f49.zip
Fix day 20 part 2 test
Diffstat (limited to 'src/bin/day20.rs')
-rw-r--r--src/bin/day20.rs2
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()));
 }