--- id: 5900f38a1000cf542c50fe9d challengeType: 5 title: 'Problem 30: Digit n powers' --- ## Description
Surprisingly there are only three numbers that can be written as the sum of fourth powers of their digits: 1634 = 14 + 64 + 34 + 44 8208 = 84 + 24 + 04 + 84 9474 = 94 + 44 + 74 + 44 As 1 = 14 is not a sum it is not included. The sum of these numbers is 1634 + 8208 + 9474 = 19316. Find the sum of all the numbers that can be written as the sum of n powers of their digits.
## Instructions
## Tests
```yml tests: - text: digitnPowers(2) should return 0. testString: assert(digitnPowers(2) == 0, 'digitnPowers(2) should return 0.'); - text: digitnPowers(3) should return 1301. testString: assert(digitnPowers(3) == 1301, 'digitnPowers(3) should return 1301.'); - text: digitnPowers(4) should return 19316. testString: assert(digitnPowers(4) == 19316, 'digitnPowers(4) should return 19316.'); - text: digitnPowers(5) should return 443839. testString: assert(digitnPowers(5) == 443839, 'digitnPowers(5) should return 443839.'); ```
## Challenge Seed
```js function digitnPowers(n) { // Good luck! return n; } digitnPowers(5); ```
## Solution
```js // solution required ```