* 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
893 B
893 B
id, challengeType, title, videoUrl, localeTitle
id | challengeType | title | videoUrl | localeTitle |
---|---|---|---|---|
5900f3a01000cf542c50feb3 | 5 | Problem 52: Permuted multiples | 问题52:置换倍数 |
Description
Instructions
Tests
tests:
- text: <code>permutedMultiples()</code>应该返回142857。
testString: assert.strictEqual(permutedMultiples(), 142857);
Challenge Seed
function permutedMultiples() {
// Good luck!
return true;
}
permutedMultiples();
Solution
// solution required