freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-80-square-root-digi...

1013 B
Raw Blame History

id challengeType videoUrl localeTitle
5900f3bc1000cf542c50fecf 5 问题80平方根数字扩展

Description

众所周知如果自然数的平方根不是整数那么它是不合理的。这种平方根的十进制扩展是无限的没有任何重复模式。二的平方根是1.41421356237309504880 ...前一百个十进制数字的数字和是475.对于前一百个自然数,找到所有的前一百个十进制数字的数字总和的总和。不合理的平方根。

Instructions

Tests

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

Challenge Seed

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

euler80();

Solution

// solution required

/section>