freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-101-optimum-polynom...

620 B

id challengeType title videoUrl localeTitle
5900f3d21000cf542c50fee4 5 Problem 101: Optimum polynomial

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler101();

Solution

// solution required