freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-110-diophantine-rec...

662 B

id challengeType title videoUrl localeTitle
5900f3db1000cf542c50feed 5 Problem 110: Diophantine Reciprocals II

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

diophantineTwo();

Solution

// solution required