freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-356-largest-roots-o...

630 B

id challengeType title videoUrl localeTitle
5900f4d01000cf542c50ffe3 5 Problem 356: Largest roots of cubic polynomials

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler356();

Solution

// solution required