Skip to content

Commit 4cd4e2a

Browse files
committed
update
1 parent 6a7a8b8 commit 4cd4e2a

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed
File renamed without changes.
File renamed without changes.

README.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -518,8 +518,8 @@ Problem | Solution | Time | Space | Difficul
518518
[Climbing Stairs]| [climbing-stairs.py] | _O(n)_ | _O(1)_ | Easy |
519519
[Decode Ways] | [decode-ways.py]| _O(n)_ | _O(1)_ | Medium |
520520
[Distinct Subsequences]|[distinct-subsequences.py]| _O(n^2)_ | _O(n)_ | Medium |
521-
[Edit Distance]|[edit-distance.py]| _O(n * m)_ | _O(n + m)_ | Medium |
522-
[Interleaving String]|[interleaving-string.py]| _O(n * m)_ | _O(n + m)_ | Hard |
521+
[Edit Distance]|[edit-distance.py]| _O(m * n)_ | _O(m + n)_ | Medium |
522+
[Interleaving String]|[interleaving-string.py]| _O(m * n)_ | _O(m + n)_ | Hard |
523523
[Maximal Rectangle]|[maximal-rectangle.py]| _O(n^2)_ | _O(n)_ | Hard |
524524
[Maximum Product Subarray]|[maximum-product-subarray.py]| _O(n)_ | _O(1)_ | Medium |
525525
[Maximum Subarray]|[maximum-subarray.py]| _O(n)_ | _O(1)_ | Medium |
@@ -529,6 +529,8 @@ Problem | Solution | Time | Space | Difficul
529529
[Scramble String] | [scramble-string.py] | _O(n^4)_ | _O(n^3)_ | Hard |
530530
[Triangle] | [triangle.py] | _O(m * n)_ | _O(n)_ | Medium |
531531
[Unique Binary Search Trees] | [unique-binary-search-trees.py] | _O(n^2)_ | _O(n)_ | Medium |
532+
[Unique Paths] | [unique-paths.py]| _O(m * n)_ | _O(m + n)_ | Medium |
533+
[Unique Paths II] | [unique-paths-ii.py] | _O(m * n)_ | _O(m + n)_ | Medium |
532534

533535
[Best Time to Buy and Sell Stock III]:https://oj.leetcode.com/problems/best-time-to-buy-and-sell-stock-iii/
534536
[best-time-to-buy-and-sell-stock-iii.py]:https://github.com/kamyu104/LeetCode/blob/master/Python/best-time-to-buy-and-sell-stock-iii.py
@@ -560,6 +562,10 @@ Problem | Solution | Time | Space | Difficul
560562
[triangle.py]:https://github.com/kamyu104/LeetCode/blob/master/Python/triangle.py
561563
[Unique Binary Search Trees]:https://oj.leetcode.com/problems/unique-binary-search-trees/
562564
[unique-binary-search-trees.py]:https://github.com/kamyu104/LeetCode/blob/master/Python/unique-binary-search-trees.py
565+
[Unique Paths]:https://oj.leetcode.com/problems/unique-paths/
566+
[unique-paths.py]:https://github.com/kamyu104/LeetCode/blob/master/Python/unique-paths.py
567+
[Unique Paths II]:https://oj.leetcode.com/problems/unique-paths-ii/
568+
[unique-paths-ii.py]:https://github.com/kamyu104/LeetCode/blob/master/Python/unique-paths-ii.py
563569

564570
---
565571

0 commit comments

Comments
 (0)