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

614 B

id challengeType title videoUrl localeTitle
5900f3bc1000cf542c50fecf 5 Problem 80: Square root digital expansion

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'assert.strictEqual(euler80(), 40886, "<code>euler80()</code> should return 40886.");'

Challenge Seed

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

euler80();

Solution

// solution required