* 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 |
|---|---|---|---|---|
| 5900f3ec1000cf542c50fefe | 5 | Problem 127: abc-hits | 问题127:abc-hits |
Description
Instructions
Tests
tests:
- text: <code>euler127()</code>应该返回18407904。
testString: assert.strictEqual(euler127(), 18407904);
Challenge Seed
function euler127() {
// Good luck!
return true;
}
euler127();
Solution
// solution required