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

55 lines
700 B
Markdown

---
id: 5900f3aa1000cf542c50febd
challengeType: 5
title: 'Problem 62: Cubic permutations'
videoUrl: ''
localeTitle: 'Problema 62: permutaciones cúbicas'
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler62()</code> debe devolver 127035954683.
testString: 'assert.strictEqual(euler62(), 127035954683, "<code>euler62()</code> should return 127035954683.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler62() {
// Good luck!
return true;
}
euler62();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>