Monday, April 14, 2014

Leetcode: Best Time to Buy and Sell Stock

Say you have an array for which the ith element is the price of a given stock on day i.
If you were only permitted to complete at most one transaction (ie, buy one and sell one share of the stock), design an algorithm to find the maximum profit.

Solution:

public class Solution {
    public int maxProfit(int[] prices) {
        int maxBenefit = 0;
        int prevMin = Integer.MAX_VALUE;
        for(int i=0; i < prices.length; i++)
        {
            if (prices[i] < prevMin)
                prevMin = prices[i];
            if (maxBenefit < prices[i]- prevMin)
                maxBenefit = prices[i]- prevMin;
        }
        return maxBenefit;
    }
}

No comments :

Post a Comment