--- id: 5900f3841000cf542c50fe97 challengeType: 5 title: 'Problem 24: Lexicographic permutations' videoUrl: '' localeTitle: 问题24:字典排列 --- ## Description
置换是对象的有序排列。例如,3124是数字1,2,3和4的一种可能的排列。如果所有排列都以数字或字母顺序列出,我们称之为词典顺序。字典排列0,1和2是:
012 021 102 120 201 210
数字0,1,2,3,4,5,6,7,8和9的第n个词典排列是什么?
## Instructions
## Tests
```yml tests: - text: lexicographicPermutations(699999)应该返回1938246570。 testString: 'assert(lexicographicPermutations(699999) == 1938246570, "lexicographicPermutations(699999) should return 1938246570.");' - text: lexicographicPermutations(899999)应该返回2536987410。 testString: 'assert(lexicographicPermutations(899999) == 2536987410, "lexicographicPermutations(899999) should return 2536987410.");' - text: lexicographicPermutations(900000)应该返回2537014689。 testString: 'assert(lexicographicPermutations(900000) == 2537014689, "lexicographicPermutations(900000) should return 2537014689.");' - text: lexicographicPermutations(999999)应该返回2783915460。 testString: 'assert(lexicographicPermutations(999999) == 2783915460, "lexicographicPermutations(999999) should return 2783915460.");' ```
## Challenge Seed
```js function lexicographicPermutations(n) { // Good luck! return n; } lexicographicPermutations(999999); ```
## Solution
```js // solution required ```