Best Time to Buy and Sell Stock
Explore how to solve the classic stock buy and sell problem by using greedy techniques to maximize profit. Understand problem constraints and practice implementing an optimal solution that runs efficiently in linear time and constant space.
We'll cover the following...
We'll cover the following...
Statement
Given an array, prices, where prices[i] represent the price of a stock on the i-th day, maximize profit by selecting a single day to buy the stock and a different day in the future to sell ...