summary refs log tree commit diff homepage
path: root/src/bin/day20.rs
diff options
context:
space:
mode:
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()));
 }