* 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
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