--- id: 5900f3b61000cf542c50fec8 challengeType: 5 title: 'Problem 73: Counting fractions in a range' --- ## Description
Consider the fraction, n/d, where n and d are positive integers. If n ## Instructions
## Tests
```yml tests: - text: euler73() should return 7295372. testString: assert.strictEqual(euler73(), 7295372, 'euler73() should return 7295372.'); ```
## Challenge Seed
```js function euler73() { // Good luck! return true; } euler73(); ```
## Solution
```js // solution required ```