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 |
---|---|---|---|---|
5900f3a51000cf542c50feb8 | 5 | Problem 57: Square root convergents | 问题57:平方根收敛 |
Description
Instructions
Tests
tests:
- text: <code>euler57()</code>应返回153。
testString: assert.strictEqual(euler57(), 153);
Challenge Seed
function euler57() {
// Good luck!
return true;
}
euler57();
Solution
// solution required
/section>