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