We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f35bdd7 + c16dafc commit f02d3f7Copy full SHA for f02d3f7
best-time-to-buy-and-sell-stock/sm9171.java
@@ -0,0 +1,13 @@
1
+class Solution {
2
+ public int maxProfit(int[] prices) {
3
+ int maxProfit = 0;
4
+ int minPrice = prices[0];
5
+
6
+ for (int i = 0; i < prices.length; i++) {
7
+ int profit = prices[i] - minPrice;
8
+ maxProfit = Math.max(maxProfit, profit);
9
+ minPrice = Math.min(minPrice, prices[i]);
10
+ }
11
+ return maxProfit;
12
13
+}
0 commit comments