class Solution: def FindGreatestSumOfSubArray(self, a): s = 0 ret = a[0] for i in ...