From 3e5ddb81431a9967fe1eb28328709ea2c320a48e Mon Sep 17 00:00:00 2001 From: Oleksii Trekhleb Date: Sat, 19 Dec 2020 19:32:57 +0100 Subject: [PATCH 1/2] 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) From 636ebe1e268b1aeb226072c3285e5e3f28813e59 Mon Sep 17 00:00:00 2001 From: Oleksii Trekhleb Date: Sat, 19 Dec 2020 19:33:35 +0100 Subject: [PATCH 2/2] 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)