freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-399-squarefree-fibo...

668 B

id challengeType title videoUrl localeTitle
5900f4fc1000cf542c51000e 5 Problem 399: Squarefree Fibonacci Numbers

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'assert.strictEqual(euler399(), 1508395636674243, 6.5e27330467, "<code>euler399()</code> should return 1508395636674243, 6.5e27330467.");'

Challenge Seed

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

euler399();

Solution

// solution required