summaryrefslogtreecommitdiffstats
path: root/src/bin/2022/day23.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/2022/day23.rs')
-rw-r--r--src/bin/2022/day23.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/2022/day23.rs b/src/bin/2022/day23.rs
index d469095..e6c2868 100644
--- a/src/bin/2022/day23.rs
+++ b/src/bin/2022/day23.rs
@@ -168,10 +168,10 @@ pub fn part2(mut elves: HashSet<(IRow, ICol)>) -> Result<usize> {
fn test() {
assert_eq!(
part1(parse(parse::data(2022, 23).unwrap()).unwrap()).unwrap(),
- 0
+ 4254
);
assert_eq!(
part2(parse(parse::data(2022, 23).unwrap()).unwrap()).unwrap(),
- 0
+ 992
);
}