* fix: Chinese test suite Add localeTiltes, descriptions, and adjust test text and testStrings to get the automated test suite working. * fix: ran script, updated testStrings and solutions
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