search and replace ```\n< with ```\n\n< to ensure there's an empty line before closing tags
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
/section>