freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-266-pseudo-square-r...

630 B

id challengeType title videoUrl localeTitle
5900f4771000cf542c50ff89 5 Problem 266: Pseudo Square Root

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler266();

Solution

// solution required