Skip to content

Instantly share code, notes, and snippets.

View mike-anderson's full-sized avatar

Mike Anderson mike-anderson

  • Victoria, British Columbia, Canada
  • 22:27 (UTC -07:00)
View GitHub Profile
@mike-anderson
mike-anderson / gist:5841584
Created June 22, 2013 17:00
incremental sieve of Eratosthenes Based on the python implementation https://gist.github.com/Jach/1761175
sieve = function (size) {
var primes = [],
i = 2,
nonprimes = {};
while (primes.length < size) {
if (nonprimes[i] == undefined) {
primes.push(i);
nonprimes[i*i] = [i];
} else {