For a given list, determine the biggest possible sum between consecutive terms, as well as the initial and final position of the terms.
big_sub([4, -3, 5, -7, 5]) ➞ [6 (sum), 0 (start), 2 (end)]
big_sub([4, -3, -5, 7, 5]) ➞ [12, 3, 4]
big_sub([2, -3, 2, -3, 2]) ➞ [2, 4, 4]