freeCodeCamp/curriculum/challenges/portuguese/08-coding-interview-prep/project-euler/problem-108-diophantine-rec...

56 lines
1.1 KiB
Markdown
Raw Normal View History

---
id: 5900f3d91000cf542c50feeb
challengeType: 5
title: 'Problem 108: Diophantine Reciprocals I'
videoUrl: ''
localeTitle: 'Problema 108: Reciprocais Diofantinos I'
---
## Description
<section id="description"> Na seguinte equação x, y e n são inteiros positivos. 1 / <var>x</var> + 1 / <var>y</var> = 1 / <var>n</var> Para <var>n</var> = 4 existem exatamente três soluções distintas: 1/5 + 1/20 = 1/4 <br> 1/6 + 1/12 = 1/4 <br> 1/8 + 1/8 = 1/4 Qual é o menor valor de <var>n</var> para o qual o número de soluções distintas excede mil? </section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>diophantineOne()</code> deve retornar 180180.
testString: 'assert.strictEqual(diophantineOne(), 180180, "<code>diophantineOne()</code> should return 180180.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function diophantineOne() {
// Good luck!
return true;
}
diophantineOne();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>