From 09fbf2eb02d8d781afa649e928ff86f60ff7eb34 Mon Sep 17 00:00:00 2001 From: Oleksii Trekhleb Date: Thu, 26 Apr 2018 07:45:51 +0300 Subject: [PATCH] Update README. --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 5ccb8ed6..186d70dc 100644 --- a/README.md +++ b/README.md @@ -80,6 +80,9 @@ * **Greedy** * **Divide and Conquer** + * [Euclidean Algorithm](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/math/euclidean-algorithm) - calculate the Greatest Common Divisor (GCD) + * [Permutations](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/sets/permutations) (with and without repetitions) + * [Combinations](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/sets/combinations) (with and without repetitions) * **Dynamic Programming** * [Fibonacci Number](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/math/fibonacci) * [Levenshtein Distance](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/string/levenshtein-distance) - minimum edit distance between two sequences