freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-77-prime-summations...

595 B

id challengeType title videoUrl localeTitle
5900f3b91000cf542c50fecc 5 Problem 77: Prime summations

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'assert.strictEqual(euler77(), 71, "<code>euler77()</code> should return 71.");'

Challenge Seed

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

euler77();

Solution

// solution required