class Solution { public: int FindGreatestSumOfSubArray(vector<int> array) { int sum = 0, maxSum = INT_MIN; for(int ...