search and replace ```\n< with ```\n\n< to ensure there's an empty line before closing tags
1.2 KiB
1.2 KiB
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle |
|---|---|---|---|---|
| 5900f3a61000cf542c50feb9 | 5 | Problem 58: Spiral primes | 问题58:螺旋素数 |
Description
Instructions
Tests
tests:
- text: <code>euler58()</code>应返回26241。
testString: assert.strictEqual(euler58(), 26241);
Challenge Seed
function euler58() {
// Good luck!
return true;
}
euler58();
Solution
// solution required
/section>