freeCodeCamp/curriculum/challenges/portuguese/08-coding-interview-prep/project-euler/problem-86-cuboid-route.por...

56 lines
690 B
Markdown
Raw Normal View History

---
id: 5900f3c31000cf542c50fed5
challengeType: 5
title: 'Problem 86: Cuboid route'
videoUrl: ''
localeTitle: 'Problema 86: Rota Cubóide'
---
## Description
undefined
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler86()</code> deve retornar 1818.
testString: 'assert.strictEqual(euler86(), 1818, "<code>euler86()</code> should return 1818.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler86() {
// Good luck!
return true;
}
euler86();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>