--- id: 5900f38a1000cf542c50fe9d challengeType: 5 title: 'Problem 30: Digit n powers' videoUrl: '' localeTitle: 'Problema 30: Potências Digitais' --- ## Description
Surpreendentemente, existem apenas três números que podem ser escritos como a soma de quatro potências dos seus dígitos: 1634 = 1 4 + 6 4 + 3 4 + 4 4 8208 = 8 4 + 2 4 + 0 4 + 8 4 9474 = 9 4 + 4 4 + 7 4 + 4 4 Como 1 = 1 4 não é uma soma que não está incluída. A soma desses números é 1634 + 8208 + 9474 = 19316. Encontre a soma de todos os números que podem ser escritos como a soma de n potências de seus dígitos.
## Instructions
## Tests
```yml tests: - text: digitnPowers(2) deve retornar 0. testString: 'assert(digitnPowers(2) == 0, "digitnPowers(2) should return 0.");' - text: digitnPowers(3) deve retornar 1301. testString: 'assert(digitnPowers(3) == 1301, "digitnPowers(3) should return 1301.");' - text: digitnPowers(4) deve retornar 19316. testString: 'assert(digitnPowers(4) == 19316, "digitnPowers(4) should return 19316.");' - text: digitnPowers(5) deve retornar 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 ```