* 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
922 B
922 B
id, challengeType, title, videoUrl, localeTitle
id | challengeType | title | videoUrl | localeTitle |
---|---|---|---|---|
5900f40d1000cf542c50ff1f | 5 | Problem 160: Factorial trailing digits | 问题160:因子尾随数字 |
Description
Instructions
Tests
tests:
- text: <code>euler160()</code>应返回16576。
testString: assert.strictEqual(euler160(), 16576);
Challenge Seed
function euler160() {
// Good luck!
return true;
}
euler160();
Solution
// solution required