From cdf72208b3c483cb0ba8204320699b96cf209a9c Mon Sep 17 00:00:00 2001 From: Oleksii Trekhleb Date: Sun, 8 Apr 2018 23:04:35 +0300 Subject: [PATCH] Add string permutation algorithm. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 5613c1b8..ffbad512 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,8 @@ * [Fibonacci Number](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/math/fibonacci) * [Cartesian Product](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/math/cartesian-product) * [Power Set](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/math/power-set) +* String + * [String Permutations](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/string/permutations) ## Useful Links