1.2 KiB
1.2 KiB
id, challengeType, videoUrl, title
id | challengeType | videoUrl | title |
---|---|---|---|
5900f3a51000cf542c50feb8 | 5 | 问题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>