@@ -60,34 +60,34 @@ typically to solve a class of problems or to perform a computation. (Source: Wik
6060 [[ Code] ( https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/graph/breadth-first-search/index.ts )]
6161- ` B ` [ Depth first search] ( /docs/Algorithms/Tree/BFS&DFS )
6262 [[ Code] ( https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/graph/depth-first-search/index.ts )]
63- - ` B ` [ Is balanced tree] ( /docs/Algorithms/Tree/IsBalanced )
63+ - ` B ` Is balanced tree
6464 [[ Code] ( https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/tree/is-balanced/index.ts )]
65- - ` B ` [ Is complete tree] ( /docs/Algorithms/Tree/IsComplete )
65+ - ` B ` Is complete tree
6666 [[ Code] ( https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/tree/is-complete/index.ts )]
67- - ` B ` [ Is full tree] ( /docs/Algorithms/Tree/IsFull )
67+ - ` B ` Is full tree
6868 [[ Code] ( https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/tree/is-full/index.ts )]
69- - ` B ` [ Is perfect tree] ( /docs/Algorithms/Tree/IsPerfect )
69+ - ` B ` Is perfect tree
7070 [[ Code] ( https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/tree/is-perfect/index.ts )]
7171
7272** Graph**
7373
74- - ` A ` [ Articulation points] ( /docs/Algorithms/Graph/ArticulationPoints )
74+ - ` A ` [ Articulation points] ( /docs/Algorithms/Graph/ArticulationPoints.mdx )
7575 [[ Code] ( https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/graph/articulation-points/index.ts )]
76- - ` A ` [ Bellman-Ford algorithm] ( /docs/Algorithms/Graph/BellmanFord )
76+ - ` A ` [ Bellman-Ford algorithm] ( /docs/Algorithms/Graph/BellmanFord.mdx )
7777 [[ Code] ( https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/graph/bellman-ford/index.ts )]
7878- ` B ` [ Breadth first search] ( /docs/Algorithms/Graph/BFS&DFS )
7979 [[ Code] ( https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/graph/breadth-first-search/index.ts )]
80- - ` A ` [ Bridges] ( /docs/Algorithms/Graph/Bridges )
80+ - ` A ` [ Bridges] ( /docs/Algorithms/Graph/Bridges.mdx )
8181 [[ Code] ( https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/graph/bridges/index.ts )]
8282- ` B ` [ Depth first search] ( /docs/Algorithms/Graph/BFS&DFS )
8383 [[ Code] ( https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/graph/depth-first-search/index.ts )]
8484- ` A ` [ Detect cycle] ( /docs/Algorithms/Graph/DetectCycle )
8585 [[ Code] ( https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/graph/detect-cycle/index.ts )]
86- - ` A ` [ Dijkstra algorithm] ( /docs/Algorithms/Graph/Dijkstra )
86+ - ` A ` [ Dijkstra algorithm] ( /docs/Algorithms/Graph/Dijkstra.mdx )
8787 [[ Code] ( https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/graph/dijkstra/index.ts )]
88- - ` A ` [ Floyd-Warshall algorithm] ( /docs/Algorithms/Graph/FloydWarshall )
88+ - ` A ` [ Floyd-Warshall algorithm] ( /docs/Algorithms/Graph/FloydWarshall.mdx )
8989 [[ Code] ( https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/graph/floyd-warshall/index.ts )]
90- - ` A ` [ Hamiltonian cycle] ( /docs/Algorithms/Graph/HamiltonianCycle )
90+ - ` A ` [ Hamiltonian cycle] ( /docs/Algorithms/Graph/HamiltonianCycle.mdx )
9191 [[ Code] ( https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/graph/hamiltonian-cycle/index.ts )]
9292- ` B ` [ Kruskal's algorithm] ( /docs/Algorithms/Graph/Kruskal )
9393 [[ Code] ( https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/graph/kruskal/index.ts )]
@@ -107,33 +107,33 @@ typically to solve a class of problems or to perform a computation. (Source: Wik
107107 - Branch & Bound
108108 [[ Code] ( https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/graph/travelling-salesman/branch&Bound.ts )]
109109
110- - ` A ` [ A* search algorithm] ( /docs/Algorithms/Graph/AStar )
110+ - ` A ` [ A* search algorithm] ( /docs/Algorithms/Graph/AStar.mdx )
111111 [[ Code] ( https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/graph/a-star-search-algorithm/index.ts )]
112112
113113** Math**
114114
115- - ` B ` [ Combinations] ( /docs/Algorithms/Math/Combinations )
115+ - ` B ` [ Combinations] ( /docs/Algorithms/Math/Combinations.mdx )
116116 - With repetitions
117117 [[ Code] ( https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/math/combinations/withRepetitions.ts )]
118118 - Without repetitions
119119 [[ Code] ( https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/math/combinations/withoutRepetitions.ts )]
120- - ` B ` [ Permutations] ( /docs/Algorithms/Math/Permutations )
120+ - ` B ` [ Permutations] ( /docs/Algorithms/Math/Permutations.mdx )
121121 - With repetitions
122122 [[ Code] ( https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/math/permutations/withRepetitions.ts )]
123123 - Without repetitions
124124 [[ Code] ( https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/math/permutations/withoutRepetitions.ts )]
125- - ` B ` [ Factorial] ( /docs/Algorithms/Math/Factorial )
125+ - ` B ` [ Factorial] ( /docs/Algorithms/Math/Factorial.mdx )
126126 [[ Code] ( https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/math/factorial/index.ts )]
127127
128128** Other**
129129
130- - ` A ` [ Knapsack problem] ( /docs/Algorithms/Other/KnapsackProblem )
130+ - ` A ` [ Knapsack problem] ( /docs/Algorithms/Other/KnapsackProblem.mdx )
131131 [[ Code] ( https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/other/knapsack/index.ts )]
132- - ` B ` [ Hanoi tower] ( /docs/Algorithms/Other/HanoiTower )
132+ - ` B ` Hanoi tower
133133 [[ Code] ( https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/other/hanoi-tower/index.ts )]
134- - ` B ` [ Knight tour] ( /docs/Algorithms/Other/KnightTour )
134+ - ` B ` Knight tour
135135 [[ Code] ( https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/other/knight-tour/index.ts )]
136- - ` B ` [ N-queens] ( /docs/Algorithms/Other/NQueens )
136+ - ` B ` N-queens
137137 [[ Code] ( https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/other/n-queens/index.ts )]
138- - ` B ` [ Square matrix rotation] ( /docs/Algorithms/Other/SquareMatrixRotation )
138+ - ` B ` Square matrix rotation
139139 [[ Code] ( https://github.com/nejcm/js-algorithms/blob/master/src/algorithms/other/square-matrix-rotation/index.ts )]
0 commit comments