Files
freeCodeCamp/curriculum/challenges/en/08-coding-interview-prep/project-euler/problem-71-ordered-fractions.en.md

1.2 KiB

id, challengeType, title
id challengeType title
5900f3b31000cf542c50fec6 5 Problem 71: Ordered fractions

Description

Consider the fraction, n/d, where n and d are positive integers. If n

Instructions

Tests

- text: <code>euler71()</code> should return 428570.
  testString: 'assert.strictEqual(euler71(), 428570, ''<code>euler71()</code> should return 428570.'');'

Challenge Seed

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

euler71();

Solution

// solution required