Skip to content

Commit 763a6a0

Browse files
committed
Automatic creation of a solution table
1 parent b1ba2b1 commit 763a6a0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ The repository contains the best versions of my solutions to LeetCode problems
7171
| 71 | [Simplify Path](https://leetcode.com/problems/simplify-path/) | [Python](Python/Simplify%20Path.py) | $O(n)$ | $O(n)$ | - |
7272
| 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 |
7373
| 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 |
7475
| 78 | [Subsets](https://leetcode.com/problems/subsets/) | [Python](Python/Subsets.py) | $O(2^{n})$ | $O(n)$ | - |
7576
| 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)$ | - |
7677
| 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
387388

388389
## Last update
389390

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
391392

0 commit comments

Comments
 (0)