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

56 lines
924 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

---
id: 5900f3aa1000cf542c50febd
challengeType: 5
videoUrl: ''
title: 问题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);
```
</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>