freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-10-summation-of-pri...

1.1 KiB

id challengeType title videoUrl localeTitle
5900f3761000cf542c50fe89 5 Problem 10: Summation of primes

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

primeSummation(2000000);

Solution

// solution required