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