dsap-cli 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,796 @@
1
+ # NeetCode 150 - Comprehensive LeetCode Problems for Coding Interviews
2
+ # Curated by NeetCode (https://neetcode.io)
3
+ # Extends Blind 75 with additional essential problems
4
+
5
+ metadata:
6
+ name: "NeetCode 150"
7
+ description: "Extended 150 essential LeetCode problems organized by pattern"
8
+ source: "NeetCode.io"
9
+ total_problems: 150
10
+
11
+ categories:
12
+ - name: "Arrays & Hashing"
13
+ problems:
14
+ - title: "Contains Duplicate"
15
+ url: "https://leetcode.com/problems/contains-duplicate/"
16
+ difficulty: "Easy"
17
+ tags: ["array", "hash-table"]
18
+
19
+ - title: "Valid Anagram"
20
+ url: "https://leetcode.com/problems/valid-anagram/"
21
+ difficulty: "Easy"
22
+ tags: ["string", "hash-table", "sorting"]
23
+
24
+ - title: "Two Sum"
25
+ url: "https://leetcode.com/problems/two-sum/"
26
+ difficulty: "Easy"
27
+ tags: ["array", "hash-table"]
28
+
29
+ - title: "Group Anagrams"
30
+ url: "https://leetcode.com/problems/group-anagrams/"
31
+ difficulty: "Medium"
32
+ tags: ["string", "hash-table", "sorting"]
33
+
34
+ - title: "Top K Frequent Elements"
35
+ url: "https://leetcode.com/problems/top-k-frequent-elements/"
36
+ difficulty: "Medium"
37
+ tags: ["array", "hash-table", "heap"]
38
+
39
+ - title: "Product of Array Except Self"
40
+ url: "https://leetcode.com/problems/product-of-array-except-self/"
41
+ difficulty: "Medium"
42
+ tags: ["array", "prefix-sum"]
43
+
44
+ - title: "Valid Sudoku"
45
+ url: "https://leetcode.com/problems/valid-sudoku/"
46
+ difficulty: "Medium"
47
+ tags: ["array", "hash-table", "matrix"]
48
+
49
+ - title: "Encode and Decode Strings"
50
+ url: "https://leetcode.com/problems/encode-and-decode-strings/"
51
+ difficulty: "Medium"
52
+ tags: ["string", "design"]
53
+
54
+ - title: "Longest Consecutive Sequence"
55
+ url: "https://leetcode.com/problems/longest-consecutive-sequence/"
56
+ difficulty: "Medium"
57
+ tags: ["array", "hash-table", "union-find"]
58
+
59
+ - name: "Two Pointers"
60
+ problems:
61
+ - title: "Valid Palindrome"
62
+ url: "https://leetcode.com/problems/valid-palindrome/"
63
+ difficulty: "Easy"
64
+ tags: ["string", "two-pointers"]
65
+
66
+ - title: "Two Sum II"
67
+ url: "https://leetcode.com/problems/two-sum-ii-input-array-is-sorted/"
68
+ difficulty: "Medium"
69
+ tags: ["array", "two-pointers", "binary-search"]
70
+
71
+ - title: "3Sum"
72
+ url: "https://leetcode.com/problems/3sum/"
73
+ difficulty: "Medium"
74
+ tags: ["array", "two-pointers", "sorting"]
75
+
76
+ - title: "Container With Most Water"
77
+ url: "https://leetcode.com/problems/container-with-most-water/"
78
+ difficulty: "Medium"
79
+ tags: ["array", "two-pointers", "greedy"]
80
+
81
+ - title: "Trapping Rain Water"
82
+ url: "https://leetcode.com/problems/trapping-rain-water/"
83
+ difficulty: "Hard"
84
+ tags: ["array", "two-pointers", "dynamic-programming"]
85
+
86
+ - name: "Sliding Window"
87
+ problems:
88
+ - title: "Best Time to Buy and Sell Stock"
89
+ url: "https://leetcode.com/problems/best-time-to-buy-and-sell-stock/"
90
+ difficulty: "Easy"
91
+ tags: ["array", "dynamic-programming"]
92
+
93
+ - title: "Longest Substring Without Repeating Characters"
94
+ url: "https://leetcode.com/problems/longest-substring-without-repeating-characters/"
95
+ difficulty: "Medium"
96
+ tags: ["string", "sliding-window", "hash-table"]
97
+
98
+ - title: "Longest Repeating Character Replacement"
99
+ url: "https://leetcode.com/problems/longest-repeating-character-replacement/"
100
+ difficulty: "Medium"
101
+ tags: ["string", "sliding-window"]
102
+
103
+ - title: "Permutation in String"
104
+ url: "https://leetcode.com/problems/permutation-in-string/"
105
+ difficulty: "Medium"
106
+ tags: ["string", "sliding-window", "hash-table"]
107
+
108
+ - title: "Minimum Window Substring"
109
+ url: "https://leetcode.com/problems/minimum-window-substring/"
110
+ difficulty: "Hard"
111
+ tags: ["string", "sliding-window", "hash-table"]
112
+
113
+ - title: "Sliding Window Maximum"
114
+ url: "https://leetcode.com/problems/sliding-window-maximum/"
115
+ difficulty: "Hard"
116
+ tags: ["array", "sliding-window", "deque", "heap"]
117
+
118
+ - name: "Stack"
119
+ problems:
120
+ - title: "Valid Parentheses"
121
+ url: "https://leetcode.com/problems/valid-parentheses/"
122
+ difficulty: "Easy"
123
+ tags: ["string", "stack"]
124
+
125
+ - title: "Min Stack"
126
+ url: "https://leetcode.com/problems/min-stack/"
127
+ difficulty: "Medium"
128
+ tags: ["stack", "design"]
129
+
130
+ - title: "Evaluate Reverse Polish Notation"
131
+ url: "https://leetcode.com/problems/evaluate-reverse-polish-notation/"
132
+ difficulty: "Medium"
133
+ tags: ["array", "stack", "math"]
134
+
135
+ - title: "Generate Parentheses"
136
+ url: "https://leetcode.com/problems/generate-parentheses/"
137
+ difficulty: "Medium"
138
+ tags: ["string", "backtracking", "stack"]
139
+
140
+ - title: "Daily Temperatures"
141
+ url: "https://leetcode.com/problems/daily-temperatures/"
142
+ difficulty: "Medium"
143
+ tags: ["array", "stack", "monotonic-stack"]
144
+
145
+ - title: "Car Fleet"
146
+ url: "https://leetcode.com/problems/car-fleet/"
147
+ difficulty: "Medium"
148
+ tags: ["array", "stack", "monotonic-stack"]
149
+
150
+ - title: "Largest Rectangle in Histogram"
151
+ url: "https://leetcode.com/problems/largest-rectangle-in-histogram/"
152
+ difficulty: "Hard"
153
+ tags: ["array", "stack", "monotonic-stack"]
154
+
155
+ - name: "Binary Search"
156
+ problems:
157
+ - title: "Binary Search"
158
+ url: "https://leetcode.com/problems/binary-search/"
159
+ difficulty: "Easy"
160
+ tags: ["array", "binary-search"]
161
+
162
+ - title: "Search a 2D Matrix"
163
+ url: "https://leetcode.com/problems/search-a-2d-matrix/"
164
+ difficulty: "Medium"
165
+ tags: ["array", "binary-search", "matrix"]
166
+
167
+ - title: "Koko Eating Bananas"
168
+ url: "https://leetcode.com/problems/koko-eating-bananas/"
169
+ difficulty: "Medium"
170
+ tags: ["array", "binary-search"]
171
+
172
+ - title: "Find Minimum in Rotated Sorted Array"
173
+ url: "https://leetcode.com/problems/find-minimum-in-rotated-sorted-array/"
174
+ difficulty: "Medium"
175
+ tags: ["array", "binary-search"]
176
+
177
+ - title: "Search in Rotated Sorted Array"
178
+ url: "https://leetcode.com/problems/search-in-rotated-sorted-array/"
179
+ difficulty: "Medium"
180
+ tags: ["array", "binary-search"]
181
+
182
+ - title: "Time Based Key-Value Store"
183
+ url: "https://leetcode.com/problems/time-based-key-value-store/"
184
+ difficulty: "Medium"
185
+ tags: ["hash-table", "binary-search", "design"]
186
+
187
+ - title: "Median of Two Sorted Arrays"
188
+ url: "https://leetcode.com/problems/median-of-two-sorted-arrays/"
189
+ difficulty: "Hard"
190
+ tags: ["array", "binary-search", "divide-and-conquer"]
191
+
192
+ - name: "Linked List"
193
+ problems:
194
+ - title: "Reverse Linked List"
195
+ url: "https://leetcode.com/problems/reverse-linked-list/"
196
+ difficulty: "Easy"
197
+ tags: ["linked-list"]
198
+
199
+ - title: "Merge Two Sorted Lists"
200
+ url: "https://leetcode.com/problems/merge-two-sorted-lists/"
201
+ difficulty: "Easy"
202
+ tags: ["linked-list", "recursion"]
203
+
204
+ - title: "Linked List Cycle"
205
+ url: "https://leetcode.com/problems/linked-list-cycle/"
206
+ difficulty: "Easy"
207
+ tags: ["linked-list", "two-pointers"]
208
+
209
+ - title: "Reorder List"
210
+ url: "https://leetcode.com/problems/reorder-list/"
211
+ difficulty: "Medium"
212
+ tags: ["linked-list", "two-pointers"]
213
+
214
+ - title: "Remove Nth Node From End of List"
215
+ url: "https://leetcode.com/problems/remove-nth-node-from-end-of-list/"
216
+ difficulty: "Medium"
217
+ tags: ["linked-list", "two-pointers"]
218
+
219
+ - title: "Copy List with Random Pointer"
220
+ url: "https://leetcode.com/problems/copy-list-with-random-pointer/"
221
+ difficulty: "Medium"
222
+ tags: ["linked-list", "hash-table"]
223
+
224
+ - title: "Add Two Numbers"
225
+ url: "https://leetcode.com/problems/add-two-numbers/"
226
+ difficulty: "Medium"
227
+ tags: ["linked-list", "math"]
228
+
229
+ - title: "Find the Duplicate Number"
230
+ url: "https://leetcode.com/problems/find-the-duplicate-number/"
231
+ difficulty: "Medium"
232
+ tags: ["array", "two-pointers", "binary-search"]
233
+
234
+ - title: "LRU Cache"
235
+ url: "https://leetcode.com/problems/lru-cache/"
236
+ difficulty: "Medium"
237
+ tags: ["linked-list", "hash-table", "design"]
238
+
239
+ - title: "Merge K Sorted Lists"
240
+ url: "https://leetcode.com/problems/merge-k-sorted-lists/"
241
+ difficulty: "Hard"
242
+ tags: ["linked-list", "heap", "divide-and-conquer"]
243
+
244
+ - title: "Reverse Nodes in k-Group"
245
+ url: "https://leetcode.com/problems/reverse-nodes-in-k-group/"
246
+ difficulty: "Hard"
247
+ tags: ["linked-list", "recursion"]
248
+
249
+ - name: "Trees"
250
+ problems:
251
+ - title: "Invert Binary Tree"
252
+ url: "https://leetcode.com/problems/invert-binary-tree/"
253
+ difficulty: "Easy"
254
+ tags: ["tree", "dfs", "bfs"]
255
+
256
+ - title: "Maximum Depth of Binary Tree"
257
+ url: "https://leetcode.com/problems/maximum-depth-of-binary-tree/"
258
+ difficulty: "Easy"
259
+ tags: ["tree", "dfs", "bfs"]
260
+
261
+ - title: "Diameter of Binary Tree"
262
+ url: "https://leetcode.com/problems/diameter-of-binary-tree/"
263
+ difficulty: "Easy"
264
+ tags: ["tree", "dfs"]
265
+
266
+ - title: "Balanced Binary Tree"
267
+ url: "https://leetcode.com/problems/balanced-binary-tree/"
268
+ difficulty: "Easy"
269
+ tags: ["tree", "dfs"]
270
+
271
+ - title: "Same Tree"
272
+ url: "https://leetcode.com/problems/same-tree/"
273
+ difficulty: "Easy"
274
+ tags: ["tree", "dfs", "bfs"]
275
+
276
+ - title: "Subtree of Another Tree"
277
+ url: "https://leetcode.com/problems/subtree-of-another-tree/"
278
+ difficulty: "Easy"
279
+ tags: ["tree", "dfs"]
280
+
281
+ - title: "Lowest Common Ancestor of a Binary Search Tree"
282
+ url: "https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-search-tree/"
283
+ difficulty: "Medium"
284
+ tags: ["tree", "dfs", "bst"]
285
+
286
+ - title: "Binary Tree Level Order Traversal"
287
+ url: "https://leetcode.com/problems/binary-tree-level-order-traversal/"
288
+ difficulty: "Medium"
289
+ tags: ["tree", "bfs"]
290
+
291
+ - title: "Binary Tree Right Side View"
292
+ url: "https://leetcode.com/problems/binary-tree-right-side-view/"
293
+ difficulty: "Medium"
294
+ tags: ["tree", "dfs", "bfs"]
295
+
296
+ - title: "Count Good Nodes in Binary Tree"
297
+ url: "https://leetcode.com/problems/count-good-nodes-in-binary-tree/"
298
+ difficulty: "Medium"
299
+ tags: ["tree", "dfs", "bfs"]
300
+
301
+ - title: "Validate Binary Search Tree"
302
+ url: "https://leetcode.com/problems/validate-binary-search-tree/"
303
+ difficulty: "Medium"
304
+ tags: ["tree", "dfs", "bst"]
305
+
306
+ - title: "Kth Smallest Element in a BST"
307
+ url: "https://leetcode.com/problems/kth-smallest-element-in-a-bst/"
308
+ difficulty: "Medium"
309
+ tags: ["tree", "dfs", "bst"]
310
+
311
+ - title: "Construct Binary Tree from Preorder and Inorder Traversal"
312
+ url: "https://leetcode.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal/"
313
+ difficulty: "Medium"
314
+ tags: ["tree", "dfs", "array"]
315
+
316
+ - title: "Binary Tree Maximum Path Sum"
317
+ url: "https://leetcode.com/problems/binary-tree-maximum-path-sum/"
318
+ difficulty: "Hard"
319
+ tags: ["tree", "dfs", "dynamic-programming"]
320
+
321
+ - title: "Serialize and Deserialize Binary Tree"
322
+ url: "https://leetcode.com/problems/serialize-and-deserialize-binary-tree/"
323
+ difficulty: "Hard"
324
+ tags: ["tree", "dfs", "bfs", "design"]
325
+
326
+ - name: "Tries"
327
+ problems:
328
+ - title: "Implement Trie (Prefix Tree)"
329
+ url: "https://leetcode.com/problems/implement-trie-prefix-tree/"
330
+ difficulty: "Medium"
331
+ tags: ["trie", "design"]
332
+
333
+ - title: "Design Add and Search Words Data Structure"
334
+ url: "https://leetcode.com/problems/design-add-and-search-words-data-structure/"
335
+ difficulty: "Medium"
336
+ tags: ["trie", "dfs", "design"]
337
+
338
+ - title: "Word Search II"
339
+ url: "https://leetcode.com/problems/word-search-ii/"
340
+ difficulty: "Hard"
341
+ tags: ["trie", "backtracking", "matrix"]
342
+
343
+ - name: "Heap / Priority Queue"
344
+ problems:
345
+ - title: "Kth Largest Element in a Stream"
346
+ url: "https://leetcode.com/problems/kth-largest-element-in-a-stream/"
347
+ difficulty: "Easy"
348
+ tags: ["heap", "design"]
349
+
350
+ - title: "Last Stone Weight"
351
+ url: "https://leetcode.com/problems/last-stone-weight/"
352
+ difficulty: "Easy"
353
+ tags: ["array", "heap"]
354
+
355
+ - title: "K Closest Points to Origin"
356
+ url: "https://leetcode.com/problems/k-closest-points-to-origin/"
357
+ difficulty: "Medium"
358
+ tags: ["array", "heap", "sorting"]
359
+
360
+ - title: "Kth Largest Element in an Array"
361
+ url: "https://leetcode.com/problems/kth-largest-element-in-an-array/"
362
+ difficulty: "Medium"
363
+ tags: ["array", "heap", "sorting"]
364
+
365
+ - title: "Task Scheduler"
366
+ url: "https://leetcode.com/problems/task-scheduler/"
367
+ difficulty: "Medium"
368
+ tags: ["array", "heap", "greedy"]
369
+
370
+ - title: "Design Twitter"
371
+ url: "https://leetcode.com/problems/design-twitter/"
372
+ difficulty: "Medium"
373
+ tags: ["heap", "hash-table", "design"]
374
+
375
+ - title: "Find Median from Data Stream"
376
+ url: "https://leetcode.com/problems/find-median-from-data-stream/"
377
+ difficulty: "Hard"
378
+ tags: ["heap", "design", "sorting"]
379
+
380
+ - name: "Backtracking"
381
+ problems:
382
+ - title: "Subsets"
383
+ url: "https://leetcode.com/problems/subsets/"
384
+ difficulty: "Medium"
385
+ tags: ["array", "backtracking"]
386
+
387
+ - title: "Combination Sum"
388
+ url: "https://leetcode.com/problems/combination-sum/"
389
+ difficulty: "Medium"
390
+ tags: ["array", "backtracking"]
391
+
392
+ - title: "Permutations"
393
+ url: "https://leetcode.com/problems/permutations/"
394
+ difficulty: "Medium"
395
+ tags: ["array", "backtracking"]
396
+
397
+ - title: "Subsets II"
398
+ url: "https://leetcode.com/problems/subsets-ii/"
399
+ difficulty: "Medium"
400
+ tags: ["array", "backtracking"]
401
+
402
+ - title: "Combination Sum II"
403
+ url: "https://leetcode.com/problems/combination-sum-ii/"
404
+ difficulty: "Medium"
405
+ tags: ["array", "backtracking"]
406
+
407
+ - title: "Word Search"
408
+ url: "https://leetcode.com/problems/word-search/"
409
+ difficulty: "Medium"
410
+ tags: ["array", "matrix", "backtracking"]
411
+
412
+ - title: "Palindrome Partitioning"
413
+ url: "https://leetcode.com/problems/palindrome-partitioning/"
414
+ difficulty: "Medium"
415
+ tags: ["string", "backtracking", "dynamic-programming"]
416
+
417
+ - title: "Letter Combinations of a Phone Number"
418
+ url: "https://leetcode.com/problems/letter-combinations-of-a-phone-number/"
419
+ difficulty: "Medium"
420
+ tags: ["string", "backtracking"]
421
+
422
+ - title: "N-Queens"
423
+ url: "https://leetcode.com/problems/n-queens/"
424
+ difficulty: "Hard"
425
+ tags: ["array", "backtracking"]
426
+
427
+ - name: "Graphs"
428
+ problems:
429
+ - title: "Number of Islands"
430
+ url: "https://leetcode.com/problems/number-of-islands/"
431
+ difficulty: "Medium"
432
+ tags: ["graph", "dfs", "bfs", "union-find"]
433
+
434
+ - title: "Clone Graph"
435
+ url: "https://leetcode.com/problems/clone-graph/"
436
+ difficulty: "Medium"
437
+ tags: ["graph", "bfs", "dfs"]
438
+
439
+ - title: "Max Area of Island"
440
+ url: "https://leetcode.com/problems/max-area-of-island/"
441
+ difficulty: "Medium"
442
+ tags: ["graph", "dfs", "bfs"]
443
+
444
+ - title: "Pacific Atlantic Water Flow"
445
+ url: "https://leetcode.com/problems/pacific-atlantic-water-flow/"
446
+ difficulty: "Medium"
447
+ tags: ["graph", "dfs", "bfs"]
448
+
449
+ - title: "Surrounded Regions"
450
+ url: "https://leetcode.com/problems/surrounded-regions/"
451
+ difficulty: "Medium"
452
+ tags: ["graph", "dfs", "bfs"]
453
+
454
+ - title: "Rotting Oranges"
455
+ url: "https://leetcode.com/problems/rotting-oranges/"
456
+ difficulty: "Medium"
457
+ tags: ["graph", "bfs", "matrix"]
458
+
459
+ - title: "Walls and Gates"
460
+ url: "https://leetcode.com/problems/walls-and-gates/"
461
+ difficulty: "Medium"
462
+ tags: ["graph", "bfs", "matrix"]
463
+
464
+ - title: "Course Schedule"
465
+ url: "https://leetcode.com/problems/course-schedule/"
466
+ difficulty: "Medium"
467
+ tags: ["graph", "topological-sort", "dfs"]
468
+
469
+ - title: "Course Schedule II"
470
+ url: "https://leetcode.com/problems/course-schedule-ii/"
471
+ difficulty: "Medium"
472
+ tags: ["graph", "topological-sort", "dfs"]
473
+
474
+ - title: "Redundant Connection"
475
+ url: "https://leetcode.com/problems/redundant-connection/"
476
+ difficulty: "Medium"
477
+ tags: ["graph", "union-find"]
478
+
479
+ - title: "Number of Connected Components in an Undirected Graph"
480
+ url: "https://leetcode.com/problems/number-of-connected-components-in-an-undirected-graph/"
481
+ difficulty: "Medium"
482
+ tags: ["graph", "dfs", "bfs", "union-find"]
483
+
484
+ - title: "Graph Valid Tree"
485
+ url: "https://leetcode.com/problems/graph-valid-tree/"
486
+ difficulty: "Medium"
487
+ tags: ["graph", "dfs", "bfs", "union-find"]
488
+
489
+ - title: "Word Ladder"
490
+ url: "https://leetcode.com/problems/word-ladder/"
491
+ difficulty: "Hard"
492
+ tags: ["graph", "bfs", "string"]
493
+
494
+ - name: "Advanced Graphs"
495
+ problems:
496
+ - title: "Reconstruct Itinerary"
497
+ url: "https://leetcode.com/problems/reconstruct-itinerary/"
498
+ difficulty: "Hard"
499
+ tags: ["graph", "dfs", "eulerian-path"]
500
+
501
+ - title: "Min Cost to Connect All Points"
502
+ url: "https://leetcode.com/problems/min-cost-to-connect-all-points/"
503
+ difficulty: "Medium"
504
+ tags: ["graph", "mst", "union-find"]
505
+
506
+ - title: "Network Delay Time"
507
+ url: "https://leetcode.com/problems/network-delay-time/"
508
+ difficulty: "Medium"
509
+ tags: ["graph", "dijkstra", "heap"]
510
+
511
+ - title: "Swim in Rising Water"
512
+ url: "https://leetcode.com/problems/swim-in-rising-water/"
513
+ difficulty: "Hard"
514
+ tags: ["graph", "binary-search", "heap"]
515
+
516
+ - title: "Alien Dictionary"
517
+ url: "https://leetcode.com/problems/alien-dictionary/"
518
+ difficulty: "Hard"
519
+ tags: ["graph", "topological-sort"]
520
+
521
+ - title: "Cheapest Flights Within K Stops"
522
+ url: "https://leetcode.com/problems/cheapest-flights-within-k-stops/"
523
+ difficulty: "Medium"
524
+ tags: ["graph", "dynamic-programming", "bfs"]
525
+
526
+ - name: "1-D Dynamic Programming"
527
+ problems:
528
+ - title: "Climbing Stairs"
529
+ url: "https://leetcode.com/problems/climbing-stairs/"
530
+ difficulty: "Easy"
531
+ tags: ["dynamic-programming"]
532
+
533
+ - title: "Min Cost Climbing Stairs"
534
+ url: "https://leetcode.com/problems/min-cost-climbing-stairs/"
535
+ difficulty: "Easy"
536
+ tags: ["dynamic-programming"]
537
+
538
+ - title: "House Robber"
539
+ url: "https://leetcode.com/problems/house-robber/"
540
+ difficulty: "Medium"
541
+ tags: ["dynamic-programming"]
542
+
543
+ - title: "House Robber II"
544
+ url: "https://leetcode.com/problems/house-robber-ii/"
545
+ difficulty: "Medium"
546
+ tags: ["dynamic-programming"]
547
+
548
+ - title: "Longest Palindromic Substring"
549
+ url: "https://leetcode.com/problems/longest-palindromic-substring/"
550
+ difficulty: "Medium"
551
+ tags: ["string", "dynamic-programming"]
552
+
553
+ - title: "Palindromic Substrings"
554
+ url: "https://leetcode.com/problems/palindromic-substrings/"
555
+ difficulty: "Medium"
556
+ tags: ["string", "dynamic-programming"]
557
+
558
+ - title: "Decode Ways"
559
+ url: "https://leetcode.com/problems/decode-ways/"
560
+ difficulty: "Medium"
561
+ tags: ["dynamic-programming", "string"]
562
+
563
+ - title: "Coin Change"
564
+ url: "https://leetcode.com/problems/coin-change/"
565
+ difficulty: "Medium"
566
+ tags: ["dynamic-programming", "bfs"]
567
+
568
+ - title: "Maximum Product Subarray"
569
+ url: "https://leetcode.com/problems/maximum-product-subarray/"
570
+ difficulty: "Medium"
571
+ tags: ["array", "dynamic-programming"]
572
+
573
+ - title: "Word Break"
574
+ url: "https://leetcode.com/problems/word-break/"
575
+ difficulty: "Medium"
576
+ tags: ["dynamic-programming", "trie", "memoization"]
577
+
578
+ - title: "Longest Increasing Subsequence"
579
+ url: "https://leetcode.com/problems/longest-increasing-subsequence/"
580
+ difficulty: "Medium"
581
+ tags: ["dynamic-programming", "binary-search"]
582
+
583
+ - title: "Partition Equal Subset Sum"
584
+ url: "https://leetcode.com/problems/partition-equal-subset-sum/"
585
+ difficulty: "Medium"
586
+ tags: ["dynamic-programming"]
587
+
588
+ - name: "2-D Dynamic Programming"
589
+ problems:
590
+ - title: "Unique Paths"
591
+ url: "https://leetcode.com/problems/unique-paths/"
592
+ difficulty: "Medium"
593
+ tags: ["dynamic-programming", "math"]
594
+
595
+ - title: "Longest Common Subsequence"
596
+ url: "https://leetcode.com/problems/longest-common-subsequence/"
597
+ difficulty: "Medium"
598
+ tags: ["dynamic-programming"]
599
+
600
+ - title: "Best Time to Buy and Sell Stock with Cooldown"
601
+ url: "https://leetcode.com/problems/best-time-to-buy-and-sell-stock-with-cooldown/"
602
+ difficulty: "Medium"
603
+ tags: ["dynamic-programming"]
604
+
605
+ - title: "Coin Change II"
606
+ url: "https://leetcode.com/problems/coin-change-ii/"
607
+ difficulty: "Medium"
608
+ tags: ["dynamic-programming"]
609
+
610
+ - title: "Target Sum"
611
+ url: "https://leetcode.com/problems/target-sum/"
612
+ difficulty: "Medium"
613
+ tags: ["dynamic-programming", "backtracking"]
614
+
615
+ - title: "Interleaving String"
616
+ url: "https://leetcode.com/problems/interleaving-string/"
617
+ difficulty: "Medium"
618
+ tags: ["dynamic-programming", "string"]
619
+
620
+ - title: "Longest Increasing Path in a Matrix"
621
+ url: "https://leetcode.com/problems/longest-increasing-path-in-a-matrix/"
622
+ difficulty: "Hard"
623
+ tags: ["dynamic-programming", "dfs", "memoization"]
624
+
625
+ - title: "Distinct Subsequences"
626
+ url: "https://leetcode.com/problems/distinct-subsequences/"
627
+ difficulty: "Hard"
628
+ tags: ["dynamic-programming", "string"]
629
+
630
+ - title: "Edit Distance"
631
+ url: "https://leetcode.com/problems/edit-distance/"
632
+ difficulty: "Medium"
633
+ tags: ["dynamic-programming", "string"]
634
+
635
+ - title: "Burst Balloons"
636
+ url: "https://leetcode.com/problems/burst-balloons/"
637
+ difficulty: "Hard"
638
+ tags: ["dynamic-programming"]
639
+
640
+ - title: "Regular Expression Matching"
641
+ url: "https://leetcode.com/problems/regular-expression-matching/"
642
+ difficulty: "Hard"
643
+ tags: ["dynamic-programming", "string", "recursion"]
644
+
645
+ - name: "Greedy"
646
+ problems:
647
+ - title: "Maximum Subarray"
648
+ url: "https://leetcode.com/problems/maximum-subarray/"
649
+ difficulty: "Medium"
650
+ tags: ["array", "dynamic-programming", "greedy"]
651
+
652
+ - title: "Jump Game"
653
+ url: "https://leetcode.com/problems/jump-game/"
654
+ difficulty: "Medium"
655
+ tags: ["dynamic-programming", "greedy"]
656
+
657
+ - title: "Jump Game II"
658
+ url: "https://leetcode.com/problems/jump-game-ii/"
659
+ difficulty: "Medium"
660
+ tags: ["dynamic-programming", "greedy"]
661
+
662
+ - title: "Gas Station"
663
+ url: "https://leetcode.com/problems/gas-station/"
664
+ difficulty: "Medium"
665
+ tags: ["array", "greedy"]
666
+
667
+ - title: "Hand of Straights"
668
+ url: "https://leetcode.com/problems/hand-of-straights/"
669
+ difficulty: "Medium"
670
+ tags: ["array", "hash-table", "greedy"]
671
+
672
+ - title: "Merge Triplets to Form Target Triplet"
673
+ url: "https://leetcode.com/problems/merge-triplets-to-form-target-triplet/"
674
+ difficulty: "Medium"
675
+ tags: ["array", "greedy"]
676
+
677
+ - title: "Partition Labels"
678
+ url: "https://leetcode.com/problems/partition-labels/"
679
+ difficulty: "Medium"
680
+ tags: ["string", "greedy", "hash-table"]
681
+
682
+ - title: "Valid Parenthesis String"
683
+ url: "https://leetcode.com/problems/valid-parenthesis-string/"
684
+ difficulty: "Medium"
685
+ tags: ["string", "greedy", "dynamic-programming"]
686
+
687
+ - name: "Intervals"
688
+ problems:
689
+ - title: "Insert Interval"
690
+ url: "https://leetcode.com/problems/insert-interval/"
691
+ difficulty: "Medium"
692
+ tags: ["array", "interval"]
693
+
694
+ - title: "Merge Intervals"
695
+ url: "https://leetcode.com/problems/merge-intervals/"
696
+ difficulty: "Medium"
697
+ tags: ["array", "interval", "sorting"]
698
+
699
+ - title: "Non-overlapping Intervals"
700
+ url: "https://leetcode.com/problems/non-overlapping-intervals/"
701
+ difficulty: "Medium"
702
+ tags: ["array", "interval", "greedy"]
703
+
704
+ - title: "Meeting Rooms"
705
+ url: "https://leetcode.com/problems/meeting-rooms/"
706
+ difficulty: "Easy"
707
+ tags: ["array", "interval", "sorting"]
708
+
709
+ - title: "Meeting Rooms II"
710
+ url: "https://leetcode.com/problems/meeting-rooms-ii/"
711
+ difficulty: "Medium"
712
+ tags: ["array", "interval", "heap"]
713
+
714
+ - title: "Minimum Interval to Include Each Query"
715
+ url: "https://leetcode.com/problems/minimum-interval-to-include-each-query/"
716
+ difficulty: "Hard"
717
+ tags: ["array", "interval", "sorting", "heap"]
718
+
719
+ - name: "Math & Geometry"
720
+ problems:
721
+ - title: "Rotate Image"
722
+ url: "https://leetcode.com/problems/rotate-image/"
723
+ difficulty: "Medium"
724
+ tags: ["array", "matrix", "math"]
725
+
726
+ - title: "Spiral Matrix"
727
+ url: "https://leetcode.com/problems/spiral-matrix/"
728
+ difficulty: "Medium"
729
+ tags: ["array", "matrix"]
730
+
731
+ - title: "Set Matrix Zeroes"
732
+ url: "https://leetcode.com/problems/set-matrix-zeroes/"
733
+ difficulty: "Medium"
734
+ tags: ["array", "matrix"]
735
+
736
+ - title: "Happy Number"
737
+ url: "https://leetcode.com/problems/happy-number/"
738
+ difficulty: "Easy"
739
+ tags: ["math", "hash-table"]
740
+
741
+ - title: "Plus One"
742
+ url: "https://leetcode.com/problems/plus-one/"
743
+ difficulty: "Easy"
744
+ tags: ["array", "math"]
745
+
746
+ - title: "Pow(x, n)"
747
+ url: "https://leetcode.com/problems/powx-n/"
748
+ difficulty: "Medium"
749
+ tags: ["math", "recursion"]
750
+
751
+ - title: "Multiply Strings"
752
+ url: "https://leetcode.com/problems/multiply-strings/"
753
+ difficulty: "Medium"
754
+ tags: ["math", "string"]
755
+
756
+ - title: "Detect Squares"
757
+ url: "https://leetcode.com/problems/detect-squares/"
758
+ difficulty: "Medium"
759
+ tags: ["array", "hash-table", "design"]
760
+
761
+ - name: "Bit Manipulation"
762
+ problems:
763
+ - title: "Single Number"
764
+ url: "https://leetcode.com/problems/single-number/"
765
+ difficulty: "Easy"
766
+ tags: ["array", "bit-manipulation"]
767
+
768
+ - title: "Number of 1 Bits"
769
+ url: "https://leetcode.com/problems/number-of-1-bits/"
770
+ difficulty: "Easy"
771
+ tags: ["bit-manipulation"]
772
+
773
+ - title: "Counting Bits"
774
+ url: "https://leetcode.com/problems/counting-bits/"
775
+ difficulty: "Easy"
776
+ tags: ["bit-manipulation", "dynamic-programming"]
777
+
778
+ - title: "Reverse Bits"
779
+ url: "https://leetcode.com/problems/reverse-bits/"
780
+ difficulty: "Easy"
781
+ tags: ["bit-manipulation"]
782
+
783
+ - title: "Missing Number"
784
+ url: "https://leetcode.com/problems/missing-number/"
785
+ difficulty: "Easy"
786
+ tags: ["array", "bit-manipulation"]
787
+
788
+ - title: "Sum of Two Integers"
789
+ url: "https://leetcode.com/problems/sum-of-two-integers/"
790
+ difficulty: "Medium"
791
+ tags: ["bit-manipulation"]
792
+
793
+ - title: "Reverse Integer"
794
+ url: "https://leetcode.com/problems/reverse-integer/"
795
+ difficulty: "Medium"
796
+ tags: ["math"]