|
| 1 | +import assert from 'node:assert/strict'; |
| 2 | + |
| 3 | +const findPrimesBelow = 290_000; |
| 4 | +const expectedPrimes = 25_224; |
| 5 | + |
| 6 | +// byteLength of BSON.serialize({ primes: Buffer.from(new Int32Array(sieveOfEratosthenes(290_000)).buffer) }) |
| 7 | +// a bin data of int32s |
| 8 | +const byteLength = 100914; |
| 9 | + |
| 10 | +export const taskSize = 1.0091400000000001; // ~1MB worth of work |
| 11 | + |
| 12 | +assert.equal(taskSize, byteLength * 10e-6); // taskSize should stay hardcoded, checking here the math is done right. |
| 13 | + |
| 14 | +/** @see https://en.wikipedia.org/wiki/Sieve_of_Eratosthenes */ |
| 15 | +function sieveOfEratosthenes(n: number) { |
| 16 | + // Create a boolean array "prime[0..n]" and initialize |
| 17 | + // all entries as true. A value in prime[i] will |
| 18 | + // become false if i is Not a prime |
| 19 | + const prime = Array.from({ length: n + 1 }, () => true); |
| 20 | + |
| 21 | + // We know 0 and 1 are not prime |
| 22 | + prime[0] = false; |
| 23 | + prime[1] = false; |
| 24 | + |
| 25 | + for (let p = 2; p * p <= n; p++) { |
| 26 | + // If prime[p] is not changed, then it is a prime |
| 27 | + if (prime[p] === true) { |
| 28 | + // Update all multiples of p as false |
| 29 | + for (let i = p * p; i <= n; i += p) { |
| 30 | + prime[i] = false; |
| 31 | + } |
| 32 | + } |
| 33 | + } |
| 34 | + |
| 35 | + // Collecting all prime numbers |
| 36 | + const primes = []; |
| 37 | + for (let i = 2; i <= n; i++) { |
| 38 | + if (prime[i] === true) { |
| 39 | + primes.push(i); |
| 40 | + } |
| 41 | + } |
| 42 | + |
| 43 | + return primes; |
| 44 | +} |
| 45 | + |
| 46 | +export async function run() { |
| 47 | + assert.equal(sieveOfEratosthenes(findPrimesBelow).length, expectedPrimes); |
| 48 | +} |
0 commit comments