876 B
876 B
id, challengeType, title, forumTopicId
id | challengeType | title | forumTopicId |
---|---|---|---|
5900f3b91000cf542c50fecc | 5 | Problem 77: Prime summations | 302190 |
Description
Instructions
Tests
tests:
- text: <code>euler77()</code> should return 71.
testString: assert.strictEqual(euler77(), 71);
Challenge Seed
function euler77() {
// Good luck!
return true;
}
euler77();
Solution
// solution required