1.3 KiB
1.3 KiB
id, challengeType, videoUrl, title
id | challengeType | videoUrl | title |
---|---|---|---|
5900f3dd1000cf542c50feef | 5 | 问题112:有弹性的数字 |
Description
Instructions
Tests
tests:
- text: <code>euler112()</code>应返回1587000。
testString: assert.strictEqual(euler112(), 1587000);
Challenge Seed
function euler112() {
// Good luck!
return true;
}
euler112();
Solution
// solution required
/section>