Skip to content

Commit 13b9ddb

Browse files
committed
Add best time to buy and sell stock Solution - s0ooo0k
1 parent d89fefb commit 13b9ddb

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
class Solution {
2+
public int maxProfit(int[] prices) {
3+
int price = prices[0];
4+
int maxProfit = 0;
5+
6+
for(int i=1; i<prices.length; i++){
7+
int profit = prices[i]-price;
8+
maxProfit = Math.max(maxProfit, profit);
9+
price = Math.min(price, prices[i]);
10+
}
11+
return maxProfit;
12+
}
13+
}
14+

0 commit comments

Comments
 (0)