Files
freeCodeCamp/curriculum/challenges/english/08-coding-interview-prep/project-euler/problem-24-lexicographic-permutations.english.md
Kristofer Koishigawa 6cfd0fc503 fix: improve Project Euler descriptions, challenge seeds, and test cases (#38016)
* fix: improve Project Euler descriptions and test case

Improve formatting of Project Euler test descriptions. Also add poker hands array and new test case for problem 54

* feat: add typeof tests and gave functions proper names for first 100 challenges

* fix: continue fixing test descriptions and adding "before test" sections

* fix: address review comments

* fix: adjust grids in 18 and 67 and fix some text that reference files rather than the given arrays

* fix: implement bug fixes and improvements from review

* fix: remove console.log statements from seed and solution
2020-02-28 06:39:47 -06:00

72 lines
1.8 KiB
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
id: 5900f3841000cf542c50fe97
challengeType: 5
title: 'Problem 24: Lexicographic permutations'
forumTopicId: 301885
---
## Description
<section id='description'>
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:
<div style='text-align: center;'>012   021   102   120   201   210</div>
What is the `n`th lexicographic permutation of the digits 0, 1, 2, 3, 4, 5, 6, 7, 8 and 9?
</section>
## Instructions
<section id='instructions'>
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>lexicographicPermutations(699999)</code> should return a number.
testString: assert(typeof lexicographicPermutations(699999) === 'number');
- text: <code>lexicographicPermutations(699999)</code> should return 1938246570.
testString: assert(lexicographicPermutations(699999) == 1938246570);
- text: <code>lexicographicPermutations(899999)</code> should return 2536987410.
testString: assert(lexicographicPermutations(899999) == 2536987410);
- text: <code>lexicographicPermutations(900000)</code> should return 2537014689.
testString: assert(lexicographicPermutations(900000) == 2537014689);
- text: <code>lexicographicPermutations(999999)</code> should return 2783915460.
testString: assert(lexicographicPermutations(999999) == 2783915460);
```
</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
```
</section>