* 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
849 B
849 B
id, challengeType, title, videoUrl, localeTitle
id | challengeType | title | videoUrl | localeTitle |
---|---|---|---|---|
5900f3b91000cf542c50fecc | 5 | Problem 77: Prime summations | 问题77:总结 |
Description
Instructions
Tests
tests:
- text: <code>euler77()</code>应该返回71。
testString: assert.strictEqual(euler77(), 71);
Challenge Seed
function euler77() {
// Good luck!
return true;
}
euler77();
Solution
// solution required