* 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.0 KiB
1.0 KiB
id, challengeType, title, videoUrl, localeTitle
id | challengeType | title | videoUrl | localeTitle |
---|---|---|---|---|
5900f3951000cf542c50fea8 | 5 | Problem 41: Pandigital prime | 问题41:Pandigital prime |
Description
Instructions
Tests
tests:
- text: <code>pandigitalPrime(4)</code>应该返回4231。
testString: assert(pandigitalPrime(4) == 4231);
- text: <code>pandigitalPrime(7)</code>应该返回7652413。
testString: assert(pandigitalPrime(7) == 7652413);
Challenge Seed
function pandigitalPrime(n) {
// Good luck!
return n;
}
pandigitalPrime(7);
Solution
// solution required