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

690 B

id challengeType title videoUrl localeTitle
5900f3c31000cf542c50fed5 5 Problem 86: Cuboid route Problema 86: Rota Cubóide

Description

undefined

Instructions

Tests

tests:
  - text: <code>euler86()</code> deve retornar 1818.
    testString: 'assert.strictEqual(euler86(), 1818, "<code>euler86()</code> should return 1818.");'

Challenge Seed

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

euler86();

Solution

// solution required