freeCodeCamp/curriculum/challenges/spanish/08-coding-interview-prep/project-euler/problem-62-cubic-permutatio...

700 B

id challengeType title videoUrl localeTitle
5900f3aa1000cf542c50febd 5 Problem 62: Cubic permutations Problema 62: permutaciones cúbicas

Description

undefined

Instructions

undefined

Tests

tests:
  - text: <code>euler62()</code> debe devolver 127035954683.
    testString: 'assert.strictEqual(euler62(), 127035954683, "<code>euler62()</code> should return 127035954683.");'

Challenge Seed

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

euler62();

Solution

// solution required