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

641 B

id challengeType title videoUrl localeTitle
5900f3d91000cf542c50feeb 5 Problem 108: Diophantine Reciprocals I

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

diophantineOne();

Solution

// solution required