mrugesh 22afc2a0ca feat(learn): python certification projects (#38216)
Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
Co-authored-by: Kristofer Koishigawa <scissorsneedfoodtoo@gmail.com>
Co-authored-by: Beau Carnes <beaucarnes@gmail.com>
2020-05-27 13:19:08 +05:30

1.6 KiB

id, challengeType, isHidden, title, forumTopicId
id challengeType isHidden title forumTopicId
5900f3761000cf542c50fe89 5 false Problem 10: Summation of primes 301723

Description

The sum of the primes below 10 is 2 + 3 + 5 + 7 = 17.

Find the sum of all the primes below n.

Instructions

Tests

tests:
  - text: <code>primeSummation(17)</code> should return a number.
    testString: assert(typeof primeSummation(17) === 'number');
  - text: <code>primeSummation(17)</code> should return 41.
    testString: assert.strictEqual(primeSummation(17), 41);
  - text: <code>primeSummation(2001)</code> should return 277050.
    testString: assert.strictEqual(primeSummation(2001), 277050);
  - text: <code>primeSummation(140759)</code> should return 873608362.
    testString: assert.strictEqual(primeSummation(140759), 873608362);
  - text: <code>primeSummation(2000000)</code> should return 142913828922.
    testString: assert.strictEqual(primeSummation(2000000), 142913828922);

Challenge Seed

function primeSummation(n) {
  // Good luck!
  return true;
}

primeSummation(2000000);

Solution

//noprotect
function primeSummation(n) {
  if (n < 3) { return 0 };
  let nums = [0, 0, 2];
  for (let i = 3; i < n; i += 2){
    nums.push(i);
    nums.push(0);
  }
  let sum = 2;
  for (let i = 3; i < n; i += 2){
    if (nums[i] !== 0){
      sum += nums[i];
      for (let j = i*i; j < n; j += i){
        nums[j] = 0;
      }
    }
  }
  return sum;
}