* 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
936 B
936 B
id, challengeType, title, videoUrl, localeTitle
id | challengeType | title | videoUrl | localeTitle |
---|---|---|---|---|
5900f49b1000cf542c50ffae | 5 | Problem 303: Multiples with small digits | 问题303:小数的倍数 |
Description
找 。
Instructions
Tests
tests:
- text: <code>euler303()</code>应该返回1111981904675169。
testString: assert.strictEqual(euler303(), 1111981904675169);
Challenge Seed
function euler303() {
// Good luck!
return true;
}
euler303();
Solution
// solution required