mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-26 13:01:43 -04:00
140 lines
3.1 KiB
Markdown
140 lines
3.1 KiB
Markdown
---
|
|
id: 5900f39e1000cf542c50feb1
|
|
title: 'Problem 50: Consecutive prime sum'
|
|
challengeType: 1
|
|
forumTopicId: 302161
|
|
dashedName: problem-50-consecutive-prime-sum
|
|
---
|
|
|
|
# --description--
|
|
|
|
The prime 41, can be written as the sum of six consecutive primes:
|
|
|
|
<div style='text-align: center;'>41 = 2 + 3 + 5 + 7 + 11 + 13</div>
|
|
|
|
This is the longest sum of consecutive primes that adds to a prime below one-hundred.
|
|
|
|
The longest sum of consecutive primes below one-thousand that adds to a prime, contains 21 terms, and is equal to 953.
|
|
|
|
Which prime, below one-million, can be written as the sum of the most consecutive primes?
|
|
|
|
# --hints--
|
|
|
|
`consecutivePrimeSum(1000)` should return a number.
|
|
|
|
```js
|
|
assert(typeof consecutivePrimeSum(1000) === 'number');
|
|
```
|
|
|
|
`consecutivePrimeSum(1000)` should return 953.
|
|
|
|
```js
|
|
assert.strictEqual(consecutivePrimeSum(1000), 953);
|
|
```
|
|
|
|
`consecutivePrimeSum(1000000)` should return 997651.
|
|
|
|
```js
|
|
assert.strictEqual(consecutivePrimeSum(1000000), 997651);
|
|
```
|
|
|
|
# --seed--
|
|
|
|
## --seed-contents--
|
|
|
|
```js
|
|
function consecutivePrimeSum(limit) {
|
|
|
|
return true;
|
|
}
|
|
|
|
consecutivePrimeSum(1000000);
|
|
```
|
|
|
|
# --solutions--
|
|
|
|
```js
|
|
class PrimeSeive {
|
|
constructor(num) {
|
|
const seive = Array(Math.floor((num - 1) / 2)).fill(true);
|
|
const primes = [2];
|
|
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;
|
|
primes.push(prime);
|
|
// Mark all multiples of this number as false (not prime)
|
|
const primeSqaredIndex = 2 * i ** 2 + 6 * i + 3;
|
|
for (let j = primeSqaredIndex; j < upper; j += prime) {
|
|
seive[j] = false;
|
|
}
|
|
}
|
|
}
|
|
for (let i = sqrtUpper + 1; i < upper; i++) {
|
|
if (seive[i]) {
|
|
primes.push(2 * i + 3);
|
|
}
|
|
}
|
|
|
|
this._seive = seive;
|
|
this._primes = primes;
|
|
}
|
|
|
|
isPrime(num) {
|
|
return num === 2
|
|
? true
|
|
: num % 2 === 0
|
|
? false
|
|
: this.isOddPrime(num);
|
|
}
|
|
|
|
isOddPrime(num) {
|
|
return this._seive[(num - 3) / 2];
|
|
}
|
|
|
|
get primes() {
|
|
return this._primes;
|
|
}
|
|
};
|
|
|
|
function consecutivePrimeSum(limit) {
|
|
// Initalize seive
|
|
const primeSeive = new PrimeSeive(limit);
|
|
|
|
// Initalize for longest sum < 100
|
|
let bestPrime = 41;
|
|
let bestI = 0;
|
|
let bestJ = 5;
|
|
|
|
// Find longest sum < limit
|
|
let sumOfCurrRange = 41;
|
|
let i = 0, j = 5;
|
|
// -- Loop while current some starting at i is < limit
|
|
while (sumOfCurrRange < limit) {
|
|
let currSum = sumOfCurrRange;
|
|
// -- Loop while pushing j towards end of PRIMES list
|
|
// keeping sum under limit
|
|
while (currSum < limit) {
|
|
if (primeSeive.isPrime(currSum)) {
|
|
bestPrime = sumOfCurrRange = currSum;
|
|
bestI = i;
|
|
bestJ = j;
|
|
}
|
|
// -- Increment inner loop
|
|
j++;
|
|
currSum += primeSeive.primes[j];
|
|
}
|
|
// -- Increment outer loop
|
|
i++;
|
|
j = i + (bestJ - bestI);
|
|
sumOfCurrRange -= primeSeive.primes[i - 1];
|
|
sumOfCurrRange += primeSeive.primes[j];
|
|
}
|
|
// Return
|
|
return bestPrime;
|
|
}
|
|
```
|