freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-435-polynomials-of-...

636 B

id challengeType title videoUrl localeTitle
5900f5201000cf542c510032 5 Problem 435: Polynomials of Fibonacci numbers

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler435();

Solution

// solution required