mirror of
https://codeberg.org/JasterV/aoc_2021.git
synced 2026-04-26 18:40:05 +00:00
changes one print
This commit is contained in:
parent
337bb31b7d
commit
9d3e404de2
1 changed files with 1 additions and 1 deletions
|
|
@ -18,7 +18,7 @@ fn main() -> Result<()> {
|
||||||
.into_values()
|
.into_values()
|
||||||
.filter(|&count| count >= 2)
|
.filter(|&count| count >= 2)
|
||||||
.count();
|
.count();
|
||||||
println!("First puzzle: {}", overlapping_points_count);
|
println!("Overlapping points: {}", overlapping_points_count);
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue