Skip to content

Commit 173122c

Browse files
committed
update
1 parent f720f97 commit 173122c

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed
File renamed without changes.

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ Problem | Solution | Time | Space | Difficul
4545
[3 Sum Closest] | [3sum-closest.py]| _O(n^2)_ | _O(1)_ | Medium |
4646
[4 Sum] |[4sum.py] | _O(n^2)_ ~ _O(n^4)_ | _O(n^2)_ | Medium |
4747
[Best Time to Buy and Sell Stock]| [best-time-to-buy-and-sell-stock.py] | _O(n)_ | _O(1)_ | Medium |
48+
[First Missing Positive]| [first-missing-positive.py] | _O(n)_ | _O(1)_ | Medium |
4849

4950
[3 Sum]: https://oj.leetcode.com/problems/3sum/
5051
[3sum.py]:https://github.com/kamyu104/LeetCode/blob/master/Python/3sum.py
@@ -54,6 +55,8 @@ Problem | Solution | Time | Space | Difficul
5455
[4sum.py]:https://github.com/kamyu104/LeetCode/blob/master/Python/4sum.py
5556
[Best Time to Buy and Sell Stock]:https://oj.leetcode.com/problems/best-time-to-buy-and-sell-stock/
5657
[best-time-to-buy-and-sell-stock.py]:https://github.com/kamyu104/LeetCode/blob/master/Python/best-time-to-buy-and-sell-stock.py
58+
[First Missing Positive]:https://oj.leetcode.com/problems/first-missing-positive/
59+
[first-missing-positive.py]:https://github.com/kamyu104/LeetCode/blob/master/Python/first-missing-positive.py
5760

5861
---
5962

@@ -90,7 +93,10 @@ Problem | Solution | Time | Space | Difficul
9093
##Stack
9194
Problem | Solution | Time | Space | Difficulty | Notes
9295
--------------- | --------------- | --------------- | --------------- | -------------- | -----
93-
|||||
96+
[Evaluate Reverse Polish Notation]| [evaluate-reverse-polish-notation.py]| _O(n)_| _O(n)_| Medium |
97+
98+
[Evaluate Reverse Polish Notation]:https://oj.leetcode.com/problems/evaluate-reverse-polish-notation/
99+
[evaluate-reverse-polish-notation.py]:https://github.com/kamyu104/LeetCode/blob/master/Python/evaluate-reverse-polish-notation.py
94100

95101
---
96102

0 commit comments

Comments
 (0)