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

55 lines
595 B
Markdown

---
id: 5900f3c31000cf542c50fed5
challengeType: 5
title: 'Problem 86: Cuboid route'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
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>