Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Written by Array Alchemist
LeetCode wizard with 75 conquered challenges under my belt.
Turning algorithm nightmares into "Aha!" moments, one explanation at a time.
Join me to level up your coding skills – from interviews to real-world application!
Best Time To Buy and Sell Stock.
Blind 75. array questions.
You are given an array prices where prices[i] is the price of a given stock on the ith day. You want to maximize your profit by choosing a single day to buy one stock and choosing a different day in the future to sell that stock.
anyone reading this can easily forget how this algorithm problem is solved. If you don't understand the application of this in the real world, It's easy to forget quickly. So let's understand it in detail.
Why learn this algorithm?
6.Amazon:
These could be the reasons why company test your knowledge on Buy and Sell Stock Questions.
Now's let's see how we can solve the problem.
1 2 3 4 5 6 day
0 1 2 3 4 5 index
[7, 1, 5, 3, 6, 4] price
1. buy @ 7 1st data, iterate over the array
a. we find we won't make any profit
2. buy @ 1, 2nd day, iterate
a. 3rd day prices goes to 5
profit = 5-1 = 4
b. 4th day, price @ 3
profit = 3 -1 = 2
c. 5th day, price @ 6
profit = 6 -1 = 5
d. 6th day, price @4
profit = 4 -1 = 3
--------- here we see a pattern ------
1. we need to iterate over the prices
2. a price need to be compared to another price
3. we need to calculate profit on every time we updates these values
Obvious way to solve this problem:
brute force where we run two loops and calculate prices on each iterattion
This is a brute force approach, now let's see how we can take this solution and optimize it.
How to optimize?
We need to understand Kodana's algorithm to optimize this.
How can we optimize a nested loop to a single iteration?
This optimization is inspired by a famous algorithm called Kadane's algorithm. While Kadane's algorithm is typically used to find the maximum subarray sum, we can adapt its core idea to solve our stock problem.
let's see how we can use this algo to solve our current problem: