Given an array of integers (positive and negative) find the largest continuous sum.
Known as the Maximum Subarray Problem.
Create your solution in the form:
def large_cont_sum(arr: List) -> int:
pass
>>> large_cont_sum([1,2,-1,3,4,10,10,-10,-1])
29