Files
freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-171-finding-numbers-for-which-the-sum-of-the-squares-of-the-digits-is-a-square.md
Oliver Eyton-Williams dec409a4bd fix: s/localeTitle/title/g
2020-10-06 23:10:08 +05:30

956 B
Raw Blame History

id, challengeType, videoUrl, title
id challengeType videoUrl title
5900f4181000cf542c50ff2a 5 问题171找到数字的平方和为正方形的数字

Description

对于正整数n令fn为n的数字在基数10中的平方和例如f3= 32 = 9f25= 22 + 52 = 4 + 25 = 29f442= 42 + 42 + 22 = 16 + 16 + 4 = 36找到所有n的总和的最后九位数0 <n <1020使得fn是一个完美的平方。

Instructions

Tests

tests:
  - text: <code>euler171()</code>应该返回142989277。
    testString: assert.strictEqual(euler171(), 142989277);

Challenge Seed

function euler171() {
  // Good luck!
  return true;
}

euler171();

Solution

// solution required

/section>