freeCodeCamp/curriculum/challenges/english/10-coding-interview-prep/project-euler/problem-80-square-root-digital-expansion.md
Oliver Eyton-Williams 0bd52f8bd1
Feat: add new Markdown parser (#39800)
and change all the challenges to new `md` format.
2020-11-27 10:02:05 -08:00

1.0 KiB

id, title, challengeType, forumTopicId
id title challengeType forumTopicId
5900f3bc1000cf542c50fecf Problem 80: Square root digital expansion 5 302194

--description--

It is well known that if the square root of a natural number is not an integer, then it is irrational. The decimal expansion of such square roots is infinite without any repeating pattern at all.

The square root of two is 1.41421356237309504880..., and the digital sum of the first one hundred decimal digits is 475.

For the first one hundred natural numbers, find the total of the digital sums of the first one hundred decimal digits for all the irrational square roots.

--hints--

sqrtDigitalExpansion() should return a number.

assert(typeof sqrtDigitalExpansion() === 'number');

sqrtDigitalExpansion() should return 40886.

assert.strictEqual(sqrtDigitalExpansion(), 40886);

--seed--

--seed-contents--

function sqrtDigitalExpansion() {

  return true;
}

sqrtDigitalExpansion();

--solutions--

// solution required