Skip to content

Instantly share code, notes, and snippets.

@dogbert17
Created February 14, 2019 21:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dogbert17/7423640a8bc4d5b9dd7c960295154ee9 to your computer and use it in GitHub Desktop.
Save dogbert17/7423640a8bc4d5b9dd7c960295154ee9 to your computer and use it in GitHub Desktop.
Code which has suddenly slowed down
use v6;
my int $max = 2_000_000;
# find all primes up to $max using The Sieve of Erathostenes
my int @a = (0..$max);
for (2..($max div 2)) -> int $i {
my int $j = 2;
@a[$i * $j++] = 1 while $i * $j <= $max;
}
# remove discarded numbers and store the rest in a set for ease of lookup
my @primes = @a.grep(-> int $num {$num > 1});
say @primes.sum;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment