--- id: 5900f3b61000cf542c50fec8 challengeType: 5 title: 'Problem 73: Counting fractions in a range' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler73(), 7295372, "euler73() should return 7295372.");' ```
## Challenge Seed
```js function euler73() { // Good luck! return true; } euler73(); ```
## Solution
```js // solution required ```