search and replace ```\n< with ```\n\n< to ensure there's an empty line before closing tags
956 B
956 B
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle |
|---|---|---|---|---|
| 5900f3e71000cf542c50fefa | 5 | Problem 123: Prime square remainders | 问题123:素数正方形余数 |
Description
Instructions
Tests
tests:
- text: <code>euler123()</code>应该返回21035。
testString: assert.strictEqual(euler123(), 21035);
Challenge Seed
function euler123() {
// Good luck!
return true;
}
euler123();
Solution
// solution required
/section>