freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-255-rounded-square-...

622 B

id challengeType title videoUrl localeTitle
5900f46d1000cf542c50ff7f 5 Problem 255: Rounded Square Roots

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler255();

Solution

// solution required