freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-52-permuted-multipl...

22 lines
433 B
Markdown
Raw Normal View History

---
id: 5900f3a01000cf542c50feb3
title: 问题52置换倍数
challengeType: 5
videoUrl: ''
---
# --description--
可以看出数字125874及其双精度数251748包含完全相同的数字但顺序不同。找到最小的正整数x使得2x3x4x5x和6x包含相同的数字。
# --hints--
`permutedMultiples()`应该返回142857。
```js
assert.strictEqual(permutedMultiples(), 142857);
```
# --solutions--