Files
freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-402-integer-valued-polynomials.arabic.md

624 B

id, challengeType, title, videoUrl, localeTitle
id challengeType title videoUrl localeTitle
5900f4ff1000cf542c510011 5 Problem 402: Integer-valued polynomials

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler402();

Solution

// solution required