1.4 KiB
1.4 KiB
id, challengeType, title
id | challengeType | title |
---|---|---|
5900f3ee1000cf542c50ff00 | 5 | Problem 130: Composites with prime repunit property |
Description
Instructions
Tests
- text: <code>euler130()</code> should return 149253.
testString: 'assert.strictEqual(euler130(), 149253, ''<code>euler130()</code> should return 149253.'');'
Challenge Seed
function euler130() {
// Good luck!
return true;
}
euler130();
Solution
// solution required