Question: (20 Points) Write a Python function that takes as input a list A (containing n numbers) and returns the maximum sum of consecutive numbers in

(20 Points) Write a Python function that takes as input a list A (containing n numbers) and returns the maximum sum of consecutive numbers in the list. For example, if A the output is 70. 4. [10, -50, 40, 20, -10, 20, -10, 5], then This problem is exactly like problem 1. However, you will implement a different strategy: First, break A in 2 halves. Compute the max sum of the left half, the right half. Then, use the functions you implemented in problems 2 and 3, to compute the max sum of A
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
