* 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.6 KiB
1.6 KiB
id, challengeType, title, videoUrl, localeTitle
id | challengeType | title | videoUrl | localeTitle |
---|---|---|---|---|
5900f54a1000cf542c51005c | 5 | Problem 477: Number Sequence Game | 问题477:数字序列游戏 |
Description
Instructions
Tests
tests:
- text: <code>euler477()</code>应该返回25044905874565164。
testString: assert.strictEqual(euler477(), 25044905874565164);
Challenge Seed
function euler477() {
// Good luck!
return true;
}
euler477();
Solution
// solution required