Answers for "buy and sell stock"

0

buy and sell stock

class Solution {
    public int maxProfit(int[] prices) {
        int minimum=Integer.MAX_VALUE;
        int maxprofit=0;
        for(int i=0;i<prices.length;i++){
            if(prices[i]<minimum) minimum=prices[i];
            else if(prices[i]-minimum>maxprofit)    maxprofit=prices[i]-minimum;
        }
        return maxprofit;
        
    }
}
Posted by: Guest on November-27-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language