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

56 lines
1.0 KiB
Markdown
Raw Normal View History

---
id: 5900f3aa1000cf542c50febd
challengeType: 5
title: 'Problem 62: Cubic permutations'
videoUrl: ''
localeTitle: 问题62立方排列
---
## Description
<section id="description">可以置换立方体410636253453以产生另外两个立方体566231043843和664301254053。实际上41063625是最小的立方体其正好具有三个排列的数字也是立方体。找到最小的立方体其数字的五个排列正好是立方体。 </section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler62()</code>应该返回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>