1.9 KiB
1.9 KiB
id, challengeType, title, forumTopicId, localeTitle
id | challengeType | title | forumTopicId | localeTitle |
---|---|---|---|---|
5900f3ee1000cf542c50ff00 | 5 | Problem 130: Composites with prime repunit property | 301758 | Задача 130: Композиты с основным свойством repunit |
Description
Instructions
Tests
tests:
- text: <code>euler130()</code> should return 149253.
testString: assert.strictEqual(euler130(), 149253);
Challenge Seed
function euler130() {
// Good luck!
return true;
}
euler130();
Solution
// solution required