@@ -24,6 +24,11 @@ export const patterns = {
24
24
url : "https://dvpr.gitbook.io/coding-interview-patterns/2.-pattern-two-pointers/2.0-introduction" ,
25
25
site : { } ,
26
26
} ,
27
+ {
28
+ title : "Tech Interview Pattern | Two Pointers Introduction" ,
29
+ url : "https://algo.monster/problems/two_pointers_intro" ,
30
+ site : { } ,
31
+ } ,
27
32
] ,
28
33
} ,
29
34
FastAndSlowPointers : {
@@ -108,7 +113,13 @@ export const patterns = {
108
113
} ,
109
114
DynamicProgramming : {
110
115
name : "Dynamic Programming" ,
111
- articles : [ ] ,
116
+ articles : [
117
+ {
118
+ title : "Dynamic Programming Introduction and Patterns" ,
119
+ url : "https://algo.monster/problems/dynamic_programming_intro" ,
120
+ site : { } ,
121
+ } ,
122
+ ] ,
112
123
} ,
113
124
CyclicSort : {
114
125
name : "Cyclic Sort" ,
@@ -122,7 +133,13 @@ export const patterns = {
122
133
} ,
123
134
TopologicalSort : {
124
135
name : "Topological Sort" ,
125
- articles : [ ] ,
136
+ articles : [
137
+ {
138
+ title : "Topological Sort | Topological Order" ,
139
+ url : "https://algo.monster/problems/topo_intro" ,
140
+ site : { } ,
141
+ } ,
142
+ ] ,
126
143
} ,
127
144
Matrices : {
128
145
name : "Matrices" ,
@@ -134,11 +151,23 @@ export const patterns = {
134
151
} ,
135
152
Graphs : {
136
153
name : "Graphs" ,
137
- articles : [ ] ,
154
+ articles : [
155
+ {
156
+ title : "Graph Fundamentals" ,
157
+ url : "https://algo.monster/problems/graph_intro" ,
158
+ site : { } ,
159
+ } ,
160
+ ] ,
138
161
} ,
139
162
TreeDepthFirstSearch : {
140
163
name : "Tree Depth First Search" ,
141
- articles : [ ] ,
164
+ articles : [
165
+ {
166
+ title : "DFS on Trees" ,
167
+ url : "https://algo.monster/problems/dfs_on_trees_intro" ,
168
+ site : { } ,
169
+ } ,
170
+ ] ,
142
171
} ,
143
172
TreeBreadthFirstSearch : {
144
173
name : "Tree Breadth First Search" ,
@@ -148,6 +177,11 @@ export const patterns = {
148
177
url : "https://dvpr.gitbook.io/coding-interview-patterns/untitled/7.0-introduction" ,
149
178
site : { } ,
150
179
} ,
180
+ {
181
+ title : "Breadth First Search on Trees" ,
182
+ url : "https://algo.monster/problems/bfs_intro" ,
183
+ site : { } ,
184
+ } ,
151
185
] ,
152
186
} ,
153
187
Trie : {
@@ -164,15 +198,27 @@ export const patterns = {
164
198
} ,
165
199
UnionFind : {
166
200
name : "Union Find" ,
167
- articles : [ ] ,
201
+ articles : [
202
+ {
203
+ title : "Union Find | Disjoint Set Union Data Structure Introduction" ,
204
+ url : "https://algo.monster/problems/dsu_intro" ,
205
+ site : { } ,
206
+ } ,
207
+ ] ,
168
208
} ,
169
209
CustomDataStructures : {
170
210
name : "Custom Data Structures" ,
171
211
articles : [ ] ,
172
212
} ,
173
213
BitwiseManipulation : {
174
214
name : "Bitwise Manipulation" ,
175
- articles : [ ] ,
215
+ articles : [
216
+ {
217
+ title : "Bitmask Introduction" ,
218
+ url : "https://algo.monster/problems/bitmask_intro" ,
219
+ site : { } ,
220
+ } ,
221
+ ] ,
176
222
} ,
177
223
ChallengeYourself : {
178
224
name : "Challenge Yourself" ,
0 commit comments