freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-73-counting-fractio...

55 lines
618 B
Markdown

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