奈學p8-Java百萬架構師5期
class Solution {
? ?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;
? ?}}
class Solution {
? ?public int maxProfit(int[] prices) {
? ? ?}
標簽: