Built something you're proud of? Tell the story. A quick G2 review of App Engine or Build Agent helps other developers see what's possible on ServiceNow. Share your experience.

SlightlyLoony
Tera Contributor

find_real_file.pngAnd now for something completely different: a contest! If you click on "Read more" below, you'll see some code that finds prime numbers using the Sieve of Eratosthenes algorithm. Can you find the bug in this code? If you can, leave a description in a comment. First one to post the right bug gets a cheap imitation gold sticky star on their forehead! And two if you fix the bug...


gs.log(primes(10111,10222));

function primes(m, n) {
var answer = [];
var lo = n ? Math.max(2,Math.abs(m)) : 2;
var hi = n ? Math.max(2,Math.abs(n)) : Math.abs(m);
if (hi < lo || hi > 1000000)
return answer;

var sieve = new Array();
for (var i = 0; i <= hi; i++)
sieve = true;

for (var i = 2; i < hi; i++) {
if (!sieve
)
continue;
if (i >= lo)
answer.push(i);
for (var j = i * 2; j <= hi; j += i)
sieve[j] = false;
}
return answer;
}

1 Comment