BestTimeBuySellStockII
BestTimeBuySellStockII.java 源码
package datastructure.array.leetcode;
/**
* @author roseduan
* 买卖股票的最佳时机II
*/
public class BestTimeBuySellStockII {
public int maxProfit(int[] prices) {
int profit = 0;
for (int i = 1; i < prices.length; i++) {
if (prices[i] > prices[i - 1]) {
profit += prices[i] - prices[i - 1];
}
}
return profit;
}
}
你可能感兴趣的文章
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦