freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-192-best-approximat...

633 B

id challengeType title videoUrl localeTitle
5900f42c1000cf542c50ff3f 5 Problem 192: Best Approximations

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler192();

Solution

// solution required