1.4 KiB
1.4 KiB
id, challengeType, videoUrl, title
id | challengeType | videoUrl | title |
---|---|---|---|
5900f38a1000cf542c50fe9d | 5 | 问题30:数字n次方 |
Description
Instructions
Tests
tests:
- text: <code>digitnPowers(2)</code>应该返回0。
testString: assert(digitnPowers(2) == 0);
- text: <code>digitnPowers(3)</code>应该返回1301。
testString: assert(digitnPowers(3) == 1301);
- text: <code>digitnPowers(4)</code>应该返回19316。
testString: assert(digitnPowers(4) == 19316);
- text: <code>digitnPowers(5)</code>应该返回443839。
testString: assert(digitnPowers(5) == 443839);
Challenge Seed
function digitnPowers(n) {
// Good luck!
return n;
}
digitnPowers(5);
Solution
// solution required
/section>