Do not print to avoid skewing the run timing.
This commit is contained in:
@@ -15,7 +15,7 @@ let total_primes_found = 0;
|
||||
for p in range(2, MAX_NUMBER_TO_CHECK) {
|
||||
if !prime_mask[p] { continue; }
|
||||
|
||||
print(p);
|
||||
//print(p);
|
||||
|
||||
total_primes_found += 1;
|
||||
|
||||
|
Reference in New Issue
Block a user