--- id: 5900f37d1000cf542c50fe8f challengeType: 5 title: 'Problem 16: Power digit sum' videoUrl: '' localeTitle: 问题16:电源数字总和 --- ## Description
2 15 = 32768,其位数之和为3 + 2 + 7 + 6 + 8 = 26。 2 指数 的数字总和是多少?
## Instructions
## Tests
```yml tests: - text: powerDigitSum(15)应该返回26。 testString: assert.strictEqual(powerDigitSum(15), 26); - text: powerDigitSum(128)应该返回166。 testString: assert.strictEqual(powerDigitSum(128), 166); - text: powerDigitSum(1000)应返回1366。 testString: assert.strictEqual(powerDigitSum(1000), 1366); ```
## Challenge Seed
```js function powerDigitSum(exponent) { // Good luck! return true; } powerDigitSum(15); ```
## Solution
```js // solution required ``` /section>