1.3 KiB
1.3 KiB
id, challengeType, videoUrl, title
id | challengeType | videoUrl | title |
---|---|---|---|
5900f3911000cf542c50fea4 | 5 | 问题37:可截断的素数 |
Description
Instructions
Tests
tests:
- text: <code>truncatablePrimes(8)</code>应该返回1986年。
testString: assert(truncatablePrimes(8) == 1986);
- text: <code>truncatablePrimes(9)</code>应该返回5123。
testString: assert(truncatablePrimes(9) == 5123);
- text: <code>truncatablePrimes(10)</code>应该返回8920。
testString: assert(truncatablePrimes(10) == 8920);
- text: <code>truncatablePrimes(11)</code>应该返回748317。
testString: assert(truncatablePrimes(11) == 748317);
Challenge Seed
function truncatablePrimes(n) {
// Good luck!
return n;
}
truncatablePrimes(11);
Solution
// solution required
/section>