2018-09-30 23:01:58 +01:00
---
id: 5900f3841000cf542c50fe97
challengeType: 5
title: 'Problem 24: Lexicographic permutations'
2019-08-05 09:17:33 -07:00
forumTopicId: 301885
2018-09-30 23:01:58 +01:00
---
## Description
<section id='description'>
2020-02-28 21:39:47 +09:00
2018-09-30 23:01:58 +01:00
A permutation is an ordered arrangement of objects. For example, 3124 is one possible permutation of the digits 1, 2, 3 and 4. If all of the permutations are listed numerically or alphabetically, we call it lexicographic order. The lexicographic permutations of 0, 1 and 2 are:
2020-02-28 21:39:47 +09:00
2018-09-30 23:01:58 +01:00
<div style='text-align: center;'>012 021 102 120 201 210</div>
2020-02-28 21:39:47 +09:00
What is the `n` th lexicographic permutation of the digits 0, 1, 2, 3, 4, 5, 6, 7, 8 and 9?
2018-09-30 23:01:58 +01:00
</section>
## Instructions
<section id='instructions'>
</section>
## Tests
<section id='tests'>
```yml
2018-10-04 14:37:37 +01:00
tests:
2020-02-28 21:39:47 +09:00
- text: <code>lexicographicPermutations(699999)</code> should return a number.
testString: assert(typeof lexicographicPermutations(699999) === 'number');
2018-10-04 14:37:37 +01:00
- text: <code>lexicographicPermutations(699999)</code> should return 1938246570.
2019-07-26 19:30:17 -07:00
testString: assert(lexicographicPermutations(699999) == 1938246570);
2018-10-04 14:37:37 +01:00
- text: <code>lexicographicPermutations(899999)</code> should return 2536987410.
2019-07-26 19:30:17 -07:00
testString: assert(lexicographicPermutations(899999) == 2536987410);
2018-10-04 14:37:37 +01:00
- text: <code>lexicographicPermutations(900000)</code> should return 2537014689.
2019-07-26 19:30:17 -07:00
testString: assert(lexicographicPermutations(900000) == 2537014689);
2018-10-04 14:37:37 +01:00
- text: <code>lexicographicPermutations(999999)</code> should return 2783915460.
2019-07-26 19:30:17 -07:00
testString: assert(lexicographicPermutations(999999) == 2783915460);
2018-09-30 23:01:58 +01:00
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function lexicographicPermutations(n) {
2020-09-15 09:57:40 -07:00
2018-09-30 23:01:58 +01:00
return n;
}
lexicographicPermutations(999999);
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
2019-07-18 08:24:12 -07:00
2018-09-30 23:01:58 +01:00
</section>