* 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 |
---|---|---|---|---|
5900f4461000cf542c50ff58 | 5 | Problem 217: Balanced Numbers | 问题217:平衡数字 |
Description
Instructions
Tests
tests:
- text: <code>euler217()</code>应该返回6273134。
testString: assert.strictEqual(euler217(), 6273134);
Challenge Seed
function euler217() {
// Good luck!
return true;
}
euler217();
Solution
// solution required