Best Time to Buy and Sell Stock

Best Time to Buy and Sell Stock

Best Time to Buy and Sell Stock - DP on Stocks

https://www.codingninjas.com/studio/problems/best-time-to-buy-and-sell-stock_893405?utm_source=striver&utm_medium=website&utm_campaign=a_zcoursetuf

Code:

int maximumProfit(vector<int> &prices){
    // Write your code here.
    int n = prices.size();

    int maxi = 0;
    int minVal = prices[0];

    for(int i=1;i<n;i++){
        maxi = max(maxi, prices[i]-minVal);
        minVal = min(minVal, prices[i]);
    }

    return maxi;
}