dde272c4b8
i18n - Build Validation / Validate i18n Builds (24) (push) Has been cancelled
CI - Node.js / Lint (24) (push) Has been cancelled
CI - Node.js / Build (24) (push) Has been cancelled
CI - Node.js / Test (24) (push) Has been cancelled
CI - Node.js / Test - Upcoming Changes (24) (push) Has been cancelled
CI - Node.js / Test - i18n (italian, 24) (push) Has been cancelled
CI - Node.js / Test - i18n (portuguese, 24) (push) Has been cancelled
CD - Docker - GHCR Images / Build and Push Images (push) Has been cancelled
96 lines
1.9 KiB
Markdown
96 lines
1.9 KiB
Markdown
---
|
|
id: a3bfc1673c0526e06d3ac698
|
|
title: Sum All Primes
|
|
challengeType: 1
|
|
forumTopicId: 16085
|
|
dashedName: sum-all-primes
|
|
---
|
|
|
|
# --description--
|
|
|
|
A <dfn>prime number</dfn> is a whole number greater than 1 with exactly two divisors: 1 and itself. For example, 2 is a prime number because it is only divisible by 1 and 2. In contrast, 4 is not prime since it is divisible by 1, 2 and 4.
|
|
|
|
Rewrite `sumPrimes` so it returns the sum of all prime numbers that are less than or equal to num.
|
|
|
|
# --hints--
|
|
|
|
`sumPrimes(10)` should return a number.
|
|
|
|
```js
|
|
assert.deepEqual(typeof sumPrimes(10), 'number');
|
|
```
|
|
|
|
`sumPrimes(10)` should return 17.
|
|
|
|
```js
|
|
assert.deepEqual(sumPrimes(10), 17);
|
|
```
|
|
|
|
`sumPrimes(977)` should return 73156.
|
|
|
|
```js
|
|
assert.deepEqual(sumPrimes(977), 73156);
|
|
```
|
|
|
|
# --seed--
|
|
|
|
## --seed-contents--
|
|
|
|
```js
|
|
function sumPrimes(num) {
|
|
return num;
|
|
}
|
|
|
|
sumPrimes(10);
|
|
```
|
|
|
|
# --solutions--
|
|
|
|
```js
|
|
class PrimeSeive {
|
|
constructor(num) {
|
|
const seive = Array(Math.floor((num - 1) / 2)).fill(true);
|
|
const upper = Math.floor((num - 1) / 2);
|
|
const sqrtUpper = Math.floor((Math.sqrt(num) - 1) / 2);
|
|
|
|
for (let i = 0; i <= sqrtUpper; i++) {
|
|
if (seive[i]) {
|
|
// Mark value in seive array
|
|
const prime = 2 * i + 3;
|
|
// Mark all multiples of this number as false (not prime)
|
|
const primeSquaredIndex = 2 * i ** 2 + 6 * i + 3;
|
|
for (let j = primeSquaredIndex; j < upper; j += prime) {
|
|
seive[j] = false;
|
|
}
|
|
}
|
|
}
|
|
|
|
this._seive = seive;
|
|
}
|
|
|
|
isPrime(num) {
|
|
return num === 2
|
|
? true
|
|
: num % 2 === 0
|
|
? false
|
|
: this.isOddPrime(num);
|
|
}
|
|
|
|
isOddPrime(num) {
|
|
return this._seive[(num - 3) / 2];
|
|
}
|
|
};
|
|
|
|
function sumPrimes(num) {
|
|
const primeSeive = new PrimeSeive(num);
|
|
|
|
let sum = 2;
|
|
for (let i = 3; i <= num; i += 2) {
|
|
if (primeSeive.isOddPrime(i)) sum += i;
|
|
}
|
|
return sum;
|
|
}
|
|
|
|
sumPrimes(10);
|
|
```
|