freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-230-fibonacci-words...

631 B

id challengeType title videoUrl localeTitle
5900f4531000cf542c50ff65 5 Problem 230: Fibonacci Words

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler230();

Solution

// solution required