From 92ea3acd5867f6b0d2bc156ae296987c3efa16ce Mon Sep 17 00:00:00 2001 From: Vishal Pankaj Chandratreya <19171016+tfpf@users.noreply.github.com> Date: Sun, 5 May 2024 00:43:23 +0530 Subject: [PATCH] Removed debug print. --- src/utils.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/utils.rs b/src/utils.rs index d63de38..b7a061d 100644 --- a/src/utils.rs +++ b/src/utils.rs @@ -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::>()