Skip to content

Commit

Permalink
Removed debug print.
Browse files Browse the repository at this point in the history
  • Loading branch information
tfpf committed May 4, 2024
1 parent cb0cd5a commit 92ea3ac
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,6 @@ mod tests {
.step_by(search_space as usize)
.map(|lower| {
let upper = std::cmp::min(lower + search_space, upper);
println!("{} {}", upper, lower);
std::thread::spawn(move || (lower..upper).filter(|&num| utils::is_prime(num)).count())
})
.collect::<Vec<_>>()
Expand Down

0 comments on commit 92ea3ac

Please sign in to comment.