freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-66-diophantine-equa...

601 B

id challengeType title videoUrl localeTitle
5900f3ae1000cf542c50fec1 5 Problem 66: Diophantine equation

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler66();

Solution

// solution required