File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Expand file tree Collapse file tree 3 files changed +7
-1
lines changed File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff 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
9194Problem | 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
You can’t perform that action at this time.
0 commit comments