* 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
835 B
835 B
id, challengeType, title, videoUrl, localeTitle
id | challengeType | title | videoUrl | localeTitle |
---|---|---|---|---|
5900f4181000cf542c50ff2b | 5 | Problem 172: Investigating numbers with few repeated digits | 问题172:调查重复数字很少的数字 |
Description
Instructions
Tests
tests:
- text: <code>euler172()</code>应返回227485267000992000。
testString: assert.strictEqual(euler172(), 227485267000992000);
Challenge Seed
function euler172() {
// Good luck!
return true;
}
euler172();
Solution
// solution required