leetcode 121

121. 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.


class Solution(object):
    def maxProfit(self, prices):
        """
        :type prices: List[int]
        :rtype: int
        """
        maxnum=0
        if len(prices)<=1:
            return 0
        minnum=prices[0]
        for i in range(len(prices)):
            minnum=min(minnum,prices[i])
            maxnum=max(maxnum,prices[i]-minnum)
        return maxnum