...

/

Feature #4: Maximum Profit

Feature #4: Maximum Profit

Description

We have now extracted the stock increase and decrease percentages over a number of consecutive days. This will be represented as a list of numbers, one for each consecutive day, holding the increase or decrease in stock price on the given day. We can use this data to find the maximum profit that could have been made for the given time period. Sometimes, the maximum profit might be negative, indicating a period of minimum loss. For simplicity and to avoid fractional values, we are rounding the increase and decrease percentages to their nearest value.

We’ll be provided with a list of positive and negative integers. The indexes will indicate the day number and the integer value will indicate the stock increase or decrease percentage on that day. We have to return the maximum value that can be obtained by adding the sublist elements.

Let’s try to understand this better with an illustration:

Solution

The basic idea is to scan the entire list and at each ...

Create a free account to view this lesson.

By signing up, you agree to Educative's Terms of Service and Privacy Policy