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 |
---|---|---|---|---|
5900f3d01000cf542c50fee2 | 5 | Problem 99: Largest exponential | 问题99:最大的指数 |
Description
Instructions
Tests
tests:
- text: <code>euler99()</code>应该返回709。
testString: assert.strictEqual(euler99(), 709);
Challenge Seed
function euler99() {
// Good luck!
return true;
}
euler99();
Solution
// solution required
/section>