909 B
909 B
id, challengeType, title
| id | challengeType | title |
|---|---|---|
| 5900f4671000cf542c50ff79 | 5 | Problem 249: Prime Subset Sums |
Description
Instructions
Tests
tests:
- text: <code>euler249()</code> should return 9275262564250418.
testString: 'assert.strictEqual(euler249(), 9275262564250418, ''<code>euler249()</code> should return 9275262564250418.'');'
Challenge Seed
function euler249() {
// Good luck!
return true;
}
euler249();
Solution
// solution required