We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3ef083 commit 03a6f73Copy full SHA for 03a6f73
README.md
@@ -32,6 +32,7 @@ LeetCode solutions in Python
32
| 49 | Group Anagrams | [Solution](problems/string/group_anagrams.py) | Medium | String, Hashing |
33
| 50 | Pow (x, n) | [Solution](problems/math/pow_xn.py) | Medium | Math |
34
| 51 | N Queens | [Solution](problems/backtracking/n_queens.py) | Hard | Backtracking |
35
+| 53 | Maximum Subarray | [Solution](problems/dynamic_programming/maximum_subarray.py) | Medium | Dynamic Programming |
36
| 54 | Spiral Matrix | [Solution](problems/matrix/spiral_matrix.py) | Medium | Matrix |
37
| 56 | Merge Intervals | [Solution](problems/intervals/merge_intervals.py) | Medium | Intervals, Array |
38
| 57 | Insert Interval | [Solution](problems/intervals/insert_interval.py) | Medium | Intervals, Array |
0 commit comments