freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-297-zeckendorf-repr...

643 B

id challengeType title videoUrl localeTitle
5900f4951000cf542c50ffa8 5 Problem 297: Zeckendorf Representation

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler297();

Solution

// solution required