* 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.3 KiB
1.3 KiB
id, challengeType, title, videoUrl, localeTitle
id | challengeType | title | videoUrl | localeTitle |
---|---|---|---|---|
5900f3dd1000cf542c50feef | 5 | Problem 112: Bouncy numbers | 问题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