--- id: 5900f3b41000cf542c50fec7 challengeType: 5 title: 'Problem 72: Counting fractions' videoUrl: '' localeTitle: 'Problema 72: Contando Frações' --- ## Description
Considere a fração n / d, onde n e d são inteiros positivos. Se n

Instruções

Testes

 tests: - text: <code>euler72()</code> should return 303963552391. testString: 'assert.strictEqual(euler72(), 303963552391, "<code>euler72()</code> should return 303963552391.");' 

Semente do Desafio

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

Solução

 // solution required 
## Instructions
## Tests
```yml tests: - text: euler72() deve retornar 303963552391. testString: 'assert.strictEqual(euler72(), 303963552391, "euler72() should return 303963552391.");' ```
## Challenge Seed
```js function euler72() { // Good luck! return true; } euler72(); ```
## Solution
```js // solution required ```