summary refs log tree commit diff homepage
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2016-12-21 19:41:01 -0500
committerJune McEnroe <june@causal.agency>2020-11-22 00:14:25 -0500
commitf19d69424bc4c8d200ffec9c3e825b9ad44c9f8c (patch)
tree0b396056e5ec3ca7e98a84271c830e316d1c09fd
parentDay 20 part 2 (diff)
downloadaoc-f19d69424bc4c8d200ffec9c3e825b9ad44c9f8c.tar.gz
aoc-f19d69424bc4c8d200ffec9c3e825b9ad44c9f8c.zip
Fix day 20 part 2 test
-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()));
 }