Add Fisher-Yates.

This commit is contained in:
Oleksii Trekhleb 2018-04-17 08:35:52 +03:00
parent e63709a271
commit 34522c8087

View File

@ -35,7 +35,6 @@
* [Euclidean Algorithm](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/math/euclidean-algorithm) - calculate the greatest common divisor (GCD) * [Euclidean Algorithm](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/math/euclidean-algorithm) - calculate the greatest common divisor (GCD)
* [FisherYates Shuffle](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/math/fisher-yates) - random permutation of a finite sequence * [FisherYates Shuffle](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/math/fisher-yates) - random permutation of a finite sequence
* Collatz Conjecture algorithm * Collatz Conjecture algorithm
* Extended Euclidean algorithm
* Greatest Difference * Greatest Difference
* Least Common Multiple * Least Common Multiple
* Newton's square * Newton's square