This challenge is a variant of the classic max sum sublist problem found in this challenge.
As the name states and given a list of numbers, the goal of that problem is to find the sublist (i.e. sequence of adjacent items) with the largest sum.
For example:
[1, 6, -1, -5, -2, 5, -1, 4, -7, 1, 2, 3]
The max sum sublist is [5, -1, 4] which has sum 5 - 1 + 4 = 8.
Notably, in this challenge, we allow for empty sublists [], whose sum is 0. Hence, for a list [-4, -3, -5, -7] of negative numbers, the max sum sublist is [] with sum 0.
This challenge then deals with the max sum sublist pair problem, which is the variant of the problem above where one picks two sublists with max total sum. For example, for the list above, the max sum sublist pair is the pair [1, 6], [5, -1, 4], which has total sum 1 + 6 + 5 - 1 + 4 = 15.
Note that in this variant we again allow sublists to be empty. For example, for the list:
[-1, -2, -3, 5, 4, 3, 4, 5, -9, -10]
The max sum sublist pair is [5, 4, 3, 4, 5], [] with total sum 5 + 4 + 3 + 4 + 5 = 21.
Write a function which, given a list of numbers, returns the total sum of the max sum sublist pair.
max_sum_pair([1, 6, -1, -5, -2, 5, -1, 4, -7, 1, 2, 3]) ➞ 15
# Max sum sublist pair is [1, 6], [5, -1, 4]
max_sum_pair([-1, -2, -3, 5, 4, 3, 4, 5, -9, -10]) ➞ 21
# Max sum sublist pair is [5, 4, 3, 4, 5], []
max_sum_pair([-4, 2, -3, -2, 2, -3, 5, -2]) ➞ 7
# Max sum sublist pair is [2], [5]
max_sum_pair([0, -1, 5, -6, 5, -3, 0, -4, 5, 2, -5, 1]) ➞ 12
# Max sum sublist pair is [5], [5, 2]
max_sum_pair([-5, 3, -4, 6, 0, 0, -4, -2, -2, 7, -5, 7, -5, 5]) ➞ 15
# Max sum sublist pair is [6], [7, -5, 7]
n is the length of the list).