freeCodeCamp/curriculum/challenges/portuguese/08-coding-interview-prep/project-euler/problem-30-digit-n-powers.p...

1.8 KiB

id challengeType title videoUrl localeTitle
5900f38a1000cf542c50fe9d 5 Problem 30: Digit n powers 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

tests:
  - text: <code>digitnPowers(2)</code> deve retornar 0.
    testString: 'assert(digitnPowers(2) == 0, "<code>digitnPowers(2)</code> should return 0.");'
  - text: <code>digitnPowers(3)</code> deve retornar 1301.
    testString: 'assert(digitnPowers(3) == 1301, "<code>digitnPowers(3)</code> should return 1301.");'
  - text: <code>digitnPowers(4)</code> deve retornar 19316.
    testString: 'assert(digitnPowers(4) == 19316, "<code>digitnPowers(4)</code> should return 19316.");'
  - text: <code>digitnPowers(5)</code> deve retornar 443839.
    testString: 'assert(digitnPowers(5) == 443839, "<code>digitnPowers(5)</code> should return 443839.");'

Challenge Seed

function digitnPowers(n) {
  // Good luck!
  return n;
}

digitnPowers(5);

Solution

// solution required