* 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.1 KiB
1.1 KiB
id, challengeType, title, videoUrl, localeTitle
id | challengeType | title | videoUrl | localeTitle |
---|---|---|---|---|
5900f3e61000cf542c50fef9 | 5 | Problem 122: Efficient exponentiation | 问题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