File tree 1 file changed +2
-1
lines changed
1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -71,6 +71,7 @@ The repository contains the best versions of my solutions to LeetCode problems
71
71
| 71 | [ Simplify Path] ( https://leetcode.com/problems/simplify-path/ ) | [ Python] ( Python/Simplify%20Path.py ) | $O(n)$ | $O(n)$ | - |
72
72
| 72 | [ Edit Distance] ( https://leetcode.com/problems/edit-distance/ ) | [ Python] ( Python/Edit%20Distance.py ) , [ Java] ( Java/Edit%20Distance.java ) | $O(n* m)$ | $O(n* m)$ | DP |
73
73
| 73 | [ Set Matrix Zeroes] ( https://leetcode.com/problems/set-matrix-zeroes/ ) | [ Python] ( Python/Set%20Matrix%20Zeroes.py ) | $O(n* m)$ | $O(n+m)$ | - |
74
+ | 74 | [ Search a 2D Matrix] ( https://leetcode.com/problems/search-a-2d-matrix/ ) | [ Python] ( Python/Search%20a%202D%20Matrix.py ) | $O(\log_ {2} (n* m))$ | $O(1)$ | Binary Search |
74
75
| 78 | [ Subsets] ( https://leetcode.com/problems/subsets/ ) | [ Python] ( Python/Subsets.py ) | $O(2^{n})$ | $O(n)$ | - |
75
76
| 80 | [ Remove Duplicates from Sorted Array II] ( https://leetcode.com/problems/remove-duplicates-from-sorted-array-ii/ ) | [ Python] ( Python/Remove%20Duplicates%20from%20Sorted%20Array%20II.py ) | $O(n)$ | $O(1)$ | - |
76
77
| 86 | [ Partition List] ( https://leetcode.com/problems/partition-list/ ) | [ Python] ( Python/Partition%20List.py ) | $O(n)$ | $O(1)$ | - |
@@ -387,5 +388,5 @@ The repository contains the best versions of my solutions to LeetCode problems
387
388
388
389
## Last update
389
390
390
- Solution table for problems was generated automatically on 2022-10-20 14:42 +0000
391
+ Solution table for problems was generated automatically on 2022-10-20 14:52 +0000
391
392
You can’t perform that action at this time.
0 commit comments