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!
#5 Maximum Subarray
Blind 75. Array
Imagine you have a lemonade stand and you keep track of your daily profits over a month. Some days you make money, and some days you might lose money because of expenses or bad weather. You want to find out the best period during the month where you made the most profit overall.
Day 1: $3
Day 2: -$2
Day 3: $5
Day 4: -$1
Day 5: $2
Day 6: $6
Day 7: -$3
Day 8: $1
Day 9: $4
Day 10: -$2
later we will see how we can find out the best period during the month to make profits.
Context about the problem:
Given an integer array
nums
, find the subarray with the largest sum, and return its sum.Example 1:
As usual before we solve the problem, let's first understand why it we need to understand this algorithm, what's the importance of asking this question or technique to solve this question?
Real world application of max sub array problem.
direct and brute force approach:
multiple ways this can be solved using brute force
but the point to be noted is how are you going to compare it in contiguous way?
we know we need to compare values so we need a loop and a nested loop,
the inner loop can be
or it can be:
now let's see how we can optimize this
When we are dealing with
When we are dealing with this context, we can use kodana's algorithm .
kodandeMaxSubArray( [3, -2, 5, -1, 2, 6, -3, 1, 4, -2])
so the profit from our lemonade stand from the example is $9.
we can tweak this algorithm to record the starting and ending day as well to find the best days.
Here's the report from leetcode.