...

/

Best Time to Buy and Sell Stock

Best Time to Buy and Sell Stock

Try to solve the Best Time to Buy and Sell Stock problem.

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

Return the maximum profit that can be achieved from this transaction. If no profit can be made, return 0.

Constraints:

  • We can’t sell before buying a stock, that is, the array index at which stock is bought will always be less than the index at which the stock is sold.

  • 11 \leq prices.length \leq 10310 ^ 3

  • 00 \leq prices[i] \leq 10510^5

Examples

Press + to interact
canvasAnimation-image
1 / 4

Understand the problem

Let's take a moment to make sure that you’ve correctly understood the problem. The quiz below helps you check if you’re solving the correct problem:

Best Time to Buy and Sell Stock

1

What should be the output if the following prices are given as an input?

prices = [10, 4, 11, 1, 5]

A)

9

B)

7

C)

1

D)

3

Question 1 of 40 attempted

Figure it out!

We have a game for you to play. Rearrange the logical building blocks to develop a clearer understanding of how to solve this problem.

Note: As an additional challenge, we have intentionally hidden the solution to this puzzle.

Sequence - Vertical
Drag and drop the cards to rearrange them in the correct sequence.

1
2
3
4
5

Try it yourself

Implement your solution in the following coding playground.

We have left the solution to this challenge as an exercise for you. The optimal solution to this problem runs in O(n) time and takes O(1) space. You may try to translate the logic of the solved puzzle into a coded solution.

Press + to interact
Go
usercode > main.go
package main
func maxProfit(prices []int) int {
// Replace this placeholder return statement with your code
return -1
}
Best Time to Buy and Sell Stock

Access this course and 1200+ top-rated courses and projects.