1.0 KiB
1.0 KiB
id, challengeType, videoUrl, title
id | challengeType | videoUrl | title |
---|---|---|---|
5900f3e61000cf542c50fef9 | 5 | 问题122:有效取幂 |
Description
Instructions
Tests
tests:
- text: <code>euler122()</code>应返回1582。
testString: assert.strictEqual(euler122(), 1582);
Challenge Seed
function euler122() {
// Good luck!
return true;
}
euler122();
Solution
// solution required
/section>