DEV Community

Debesh P.
Debesh P.

Posted on

122. Best Time to Buy and Sell Stock II | LeetCode | Top Interview 150 | Coding Questions

Problem Link

https://leetcode.com/problems/best-time-to-buy-and-sell-stock-ii/


leetcode 122


Solution

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;
    }
}
Enter fullscreen mode Exit fullscreen mode

Top comments (0)