fix(18): correct text

This commit is contained in:
Ashhhleyyy 2023-01-04 09:20:54 +00:00
parent 4c86a3ddae
commit e7997cd047
Signed by: ash
GPG key ID: 83B789081A0878FB

View file

@ -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) || can_reach_outside(&input, (&x_range, &y_range, &z_range), other, &HashSet::new(), &mut cache)
}).count(); }).count();
println!("Part 2: {corrected_sa}"); println!("Part two: {corrected_sa}");
Ok(()) Ok(())
} }