980 B
980 B
id, challengeType, videoUrl, title
id | challengeType | videoUrl | title |
---|---|---|---|
5900f3951000cf542c50fea8 | 5 | 问题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
/section>