freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-438-integer-part-of...

653 B

id challengeType title videoUrl localeTitle
5900f5231000cf542c510034 5 Problem 438: Integer part of polynomial equation"s solutions

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler438();

Solution

// solution required