freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-30-digit-n-powers.md

1.4 KiB
Raw Blame History

id challengeType videoUrl title
5900f38a1000cf542c50fe9d 5 问题30数字n次方

Description

令人惊讶的是,只有三个数字可以写为它们的数字的四次幂之和: 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 由于1 = 1 4 不是总和,因此不包括在内。 这些数字的总和为1634 + 8208 + 9474 = 19316。 找出所有可以写为数字n次幂的数字之和。

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>