Add permutations and combinations.

This commit is contained in:
Oleksii Trekhleb 2018-04-17 19:41:04 +03:00
parent 59434dbabb
commit e8de00c969

View File

@ -36,7 +36,7 @@
* [Least Common Multiple (LCM)](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/math/least-common-multiple)
* [FisherYates Shuffle](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/math/fisher-yates) - random permutation of a finite sequence
* **String**
* [Permutations](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/string/permutations) - with and without repetitions
* [Permutations](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/string/permutations) (with and without repetitions)
* Combination
* Minimum Edit distance (Levenshtein Distance)
* Hamming