--- id: 5900f3b31000cf542c50fec6 challengeType: 5 title: 'Problem 71: Ordered fractions' forumTopicId: 302184 --- ## Description
Consider the fraction, n/d, where n and d are positive integers. If n ## Instructions
## Tests
```yml tests: - text: euler71() should return 428570. testString: assert.strictEqual(euler71(), 428570); ```
## Challenge Seed
```js function euler71() { // Good luck! return true; } euler71(); ```
## Solution
```js // solution required ```