From e7997cd0476e14b36a2ef11cefd04aa9c8b572ab Mon Sep 17 00:00:00 2001 From: Ashhhleyyy Date: Wed, 4 Jan 2023 09:20:54 +0000 Subject: [PATCH] fix(18): correct text --- src/bin/day_18.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/day_18.rs b/src/bin/day_18.rs index badbe58..4fe90d9 100644 --- a/src/bin/day_18.rs +++ b/src/bin/day_18.rs @@ -69,7 +69,7 @@ fn day_18(input: Input) -> Result<()> { || can_reach_outside(&input, (&x_range, &y_range, &z_range), other, &HashSet::new(), &mut cache) }).count(); - println!("Part 2: {corrected_sa}"); + println!("Part two: {corrected_sa}"); Ok(()) }