* 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 |
---|---|---|---|---|
5900f3cc1000cf542c50fede | 5 | Problem 95: Amicable chains | 问题95:友好的链条 |
Description
Instructions
Tests
tests:
- text: <code>euler95()</code>应返回14316。
testString: assert.strictEqual(euler95(), 14316);
Challenge Seed
function euler95() {
// Good luck!
return true;
}
euler95();
Solution
// solution required