2018-10-10 18:03:03 -04:00
|
|
|
|
---
|
|
|
|
|
id: 5900f3841000cf542c50fe97
|
|
|
|
|
challengeType: 5
|
|
|
|
|
videoUrl: ''
|
2020-10-01 17:54:21 +02:00
|
|
|
|
title: 问题24:字典排列
|
2018-10-10 18:03:03 -04:00
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
## Description
|
|
|
|
|
<section id="description">置换是对象的有序排列。例如,3124是数字1,2,3和4的一种可能的排列。如果所有排列都以数字或字母顺序列出,我们称之为词典顺序。字典排列0,1和2是: <div style="text-align: center;"> 012 021 102 120 201 210 </div>数字0,1,2,3,4,5,6,7,8和9的第<var>n</var>个词典排列是什么? </section>
|
|
|
|
|
|
|
|
|
|
## Instructions
|
|
|
|
|
<section id="instructions">
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
## Tests
|
|
|
|
|
<section id='tests'>
|
|
|
|
|
|
|
|
|
|
```yml
|
|
|
|
|
tests:
|
|
|
|
|
- text: <code>lexicographicPermutations(699999)</code>应该返回1938246570。
|
2020-02-18 01:40:55 +09:00
|
|
|
|
testString: assert(lexicographicPermutations(699999) == 1938246570);
|
2018-10-10 18:03:03 -04:00
|
|
|
|
- text: <code>lexicographicPermutations(899999)</code>应该返回2536987410。
|
2020-02-18 01:40:55 +09:00
|
|
|
|
testString: assert(lexicographicPermutations(899999) == 2536987410);
|
2018-10-10 18:03:03 -04:00
|
|
|
|
- text: <code>lexicographicPermutations(900000)</code>应该返回2537014689。
|
2020-02-18 01:40:55 +09:00
|
|
|
|
testString: assert(lexicographicPermutations(900000) == 2537014689);
|
2018-10-10 18:03:03 -04:00
|
|
|
|
- text: <code>lexicographicPermutations(999999)</code>应该返回2783915460。
|
2020-02-18 01:40:55 +09:00
|
|
|
|
testString: assert(lexicographicPermutations(999999) == 2783915460);
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
## Challenge Seed
|
|
|
|
|
<section id='challengeSeed'>
|
|
|
|
|
|
|
|
|
|
<div id='js-seed'>
|
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
|
function lexicographicPermutations(n) {
|
|
|
|
|
// Good luck!
|
|
|
|
|
return n;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
lexicographicPermutations(999999);
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
## Solution
|
|
|
|
|
<section id='solution'>
|
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
|
// solution required
|
|
|
|
|
```
|
2020-08-13 17:24:35 +02:00
|
|
|
|
|
|
|
|
|
/section>
|