From 636ebe1e268b1aeb226072c3285e5e3f28813e59 Mon Sep 17 00:00:00 2001 From: Oleksii Trekhleb Date: Sat, 19 Dec 2020 19:33:35 +0100 Subject: [PATCH] Adding the Matrix traversal and generation to the Divide and Conquer section. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8e26125c..4d88a064 100644 --- a/README.md +++ b/README.md @@ -185,7 +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` [Matrices](src/algorithms/math/matrix) - generating and traversing the matrices of different shapes * `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)