Skip to content

Commit 0e2f0d7

Browse files
Create 121. Best Time to Buy and Sell Stock
1 parent 9b1e910 commit 0e2f0d7

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

121. Best Time to Buy and Sell Stock

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
class Solution {
2+
public:
3+
int maxProfit(vector<int>& prices) {
4+
int j=prices.size()-1;
5+
int i=0;
6+
int profit=0;
7+
int min=prices[i];
8+
int max=0;
9+
for(int i=1;i<=j;i++){
10+
if(min>prices[i]){
11+
min=prices[i];
12+
max=0;
13+
}
14+
else if(max<prices[i])
15+
max=prices[i];
16+
17+
if((max-min)>profit)
18+
profit=max-min;
19+
}
20+
return profit;
21+
}

0 commit comments

Comments
 (0)