search and replace ```\n< with ```\n\n< to ensure there's an empty line before closing tags
1.1 KiB
1.1 KiB
id, challengeType, title, videoUrl, localeTitle
id | challengeType | title | videoUrl | localeTitle |
---|---|---|---|---|
5900f39d1000cf542c50feb0 | 5 | Problem 49: Prime permutations | 问题49:主要排列 |
Description
Instructions
Tests
tests:
- text: <code>primePermutations()</code>应该返回296962999629。
testString: assert.strictEqual(primePermutations(), 296962999629);
Challenge Seed
function primePermutations() {
// Good luck!
return true;
}
primePermutations();
Solution
// solution required
/section>