search and replace ```\n< with ```\n\n< to ensure there's an empty line before closing tags
803 B
803 B
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle |
|---|---|---|---|---|
| 5900f48f1000cf542c50ffa2 | 5 | Problem 291: Panaitopol Primes | 问题291:Panaitopol素数 |
Description
找出多少个Panaitopol素数小于5×1015。
Instructions
Tests
tests:
- text: <code>euler291()</code>应该返回4037526。
testString: assert.strictEqual(euler291(), 4037526);
Challenge Seed
function euler291() {
// Good luck!
return true;
}
euler291();
Solution
// solution required
/section>