From f015a54fb2d23c4945e10a2d2dc7e2fcfe6645a2 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Fri, 23 Dec 2022 23:49:37 -0500 Subject: day 23 tests --- src/bin/2022/day23.rs | 4 ++-- 1 file 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 { 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 ); } -- cgit v1.2.3-54-g00ecf