Skip to content

Commit 6fb19aa

Browse files
committed
update readme
1 parent dd42590 commit 6fb19aa

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

Diff for: readme.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Language: **C++/Java/Python/(Sql)**
1818

1919
### Problems
2020

21-
I have solved 143 / 191 problems.=w=
21+
I have solved 147 / 191 problems.=w=
2222

2323
| \# | Problems | Solutions | Note |
2424
|----|----------|-----------|------|
@@ -136,15 +136,15 @@ I have solved 143 / 191 problems.=w=
136136
| 112 | [Path Sum](https://oj.leetcode.com/problems/Path-Sum/) | [C++](./solutions/112.Path_Sum) | Waiting |
137137
| 113 | [Path Sum II](https://oj.leetcode.com/problems/Path-Sum-II/) | [C++ Java Python](./solutions/113.Path_Sum_II) | Waiting |
138138
| 114 | [Flatten Binary Tree to Linked List](https://oj.leetcode.com/problems/Flatten-Binary-Tree-to-Linked-List/) | [C++ Java](./solutions/114.Flatten_Binary_Tree_to_Linked_List) | [Note](./solutions/114.Flatten_Binary_Tree_to_Linked_List) |
139-
| 115 | [Distinct Subsequences](https://oj.leetcode.com/problems/Distinct-Subsequences/) | Coming soon | Waiting |
139+
| 115 | [Distinct Subsequences](https://oj.leetcode.com/problems/Distinct-Subsequences/) | [C++ Python](./solutions/115.Distinct_Subsequences) | [Note](./solutions/115.Distinct_Subsequences) |
140140
| 116 | [Populating Next Right Pointers in...](https://oj.leetcode.com/problems/Populating-Next-Right-Pointers-in-Each-Node/) | [C++ Java Python](./solutions/116.Populating_Next_Right_Pointers_in...) | Waiting |
141141
| 117 | [Populating Next Right Pointers in...](https://oj.leetcode.com/problems/Populating-Next-Right-Pointers-in-Each-Node-II/) | [C++ Java Python](./solutions/117.Populating_Next_Right_Pointers_in...) | Waiting |
142142
| 118 | [Pascals Triangle](https://oj.leetcode.com/problems/Pascals-Triangle/) | [C++](./solutions/118.Pascals_Triangle) | Waiting |
143143
| 119 | [Pascal's Triangle II](https://oj.leetcode.com/problems/Pascal's-Triangle-II/) | [C++](./solutions/119.Pascal's_Triangle_II) | Waiting |
144144
| 120 | [Triangle](https://oj.leetcode.com/problems/Triangle/) | [C++ Java Python](./solutions/120.Triangle) | Waiting |
145-
| 121 | [Best Time to Buy and Sell Stock](https://oj.leetcode.com/problems/Best-Time-to-Buy-and-Sell-Stock/) | Coming soon | Waiting |
146-
| 122 | [Best Time to Buy and Sell Stock II](https://oj.leetcode.com/problems/Best-Time-to-Buy-and-Sell-Stock-II/) | Coming soon | Waiting |
147-
| 123 | [Best Time to Buy and Sell Stock III](https://oj.leetcode.com/problems/Best-Time-to-Buy-and-Sell-Stock-III/) | Coming soon | Waiting |
145+
| 121 | [Best Time to Buy and Sell Stock](https://oj.leetcode.com/problems/Best-Time-to-Buy-and-Sell-Stock/) | [C++ Python](./solutions/121.Best_Time_to_Buy_and_Sell_Stock) | [Note](./solutions/121.Best_Time_to_Buy_and_Sell_Stock) |
146+
| 122 | [Best Time to Buy and Sell Stock II](https://oj.leetcode.com/problems/Best-Time-to-Buy-and-Sell-Stock-II/) | [C++ Python](./solutions/122.Best_Time_to_Buy_and_Sell_Stock_II) | [Note](./solutions/122.Best_Time_to_Buy_and_Sell_Stock_II) |
147+
| 123 | [Best Time to Buy and Sell Stock III](https://oj.leetcode.com/problems/Best-Time-to-Buy-and-Sell-Stock-III/) | [C++ Python](./solutions/123.Best_Time_to_Buy_and_Sell_Stock_III) | [Note](./solutions/123.Best_Time_to_Buy_and_Sell_Stock_III) |
148148
| 124 | [Binary Tree Maximum Path Sum](https://oj.leetcode.com/problems/Binary-Tree-Maximum-Path-Sum/) | Coming soon | Waiting |
149149
| 125 | [Valid Palindrome](https://oj.leetcode.com/problems/Valid-Palindrome/) | [C++](./solutions/125.Valid_Palindrome) | Waiting |
150150
| 126 | [Word Ladder](https://oj.leetcode.com/problems/Word-Ladder/) | Coming soon | Waiting |

Diff for: solutions/121.Best_Time_to_Buy_and_Sell_Stock/readme.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
代码(github):https://github.com/illuz/leetcode
66

77
### **题意**
8-
给一个数组,`prices[i]` 表示第 i 天的交易值,也就是你在这天买入或卖出的交易值。
8+
给一个数组,`prices[i]` 表示第 i 天的交易值,也就是你在这天买入或卖出的交易值。
9+
你只能买入及卖出一轮,求最大盈利。
910

1011
### **分析**
1112

Diff for: solutions/122.Best_Time_to_Buy_and_Sell_Stock_II/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
### **题意**
88
给一个数组,`prices[i]` 表示第 i 天的交易值,也就是你在这天买入或卖出的交易值。
9-
你可以买入或卖出多次,不过你一个时间只能拥有一个股票,求最大盈利。
9+
你可以买入及卖出多轮,不过你一个时间只能拥有一个股票,求最大盈利。
1010

1111
### **分析**
1212
刚开始以为一天只能交易一次,没想到同一天你可以先卖出再买入。

0 commit comments

Comments
 (0)