From 3e5ddb81431a9967fe1eb28328709ea2c320a48e Mon Sep 17 00:00:00 2001 From: Oleksii Trekhleb Date: Sat, 19 Dec 2020 19:32:57 +0100 Subject: [PATCH] Adding the Matrix traversal and generation to the Divide and Conquer section. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 8f52db1d..8e26125c 100644 --- a/README.md +++ b/README.md @@ -185,6 +185,7 @@ algorithm is an abstraction higher than a computer program. * `B` [Quicksort](src/algorithms/sorting/quick-sort) * `B` [Tree Depth-First Search](src/algorithms/tree/depth-first-search) (DFS) * `B` [Graph Depth-First Search](src/algorithms/graph/depth-first-search) (DFS) + * `B` [Matrices](src/algorithms/math/matrix) - generating and traversing the matrices of different depths * `B` [Jump Game](src/algorithms/uncategorized/jump-game) * `B` [Fast Powering](src/algorithms/math/fast-powering) * `A` [Permutations](src/algorithms/sets/permutations) (with and without repetitions)