Create a function that takes an integer array and return the biggest between positive sum, negative sum, or 0s count. The major is understood as the greatest absolute.
arr = {1,2,3,4,0,0,-3,-2}, the function has to return 10, because:
MajorSum(1, 2, 3, 4, 0, 0, -3, -2) ➞ 10
MajorSum(-4, -8, -12, -3, 4, 7, 1, 3, 0, 0, 0, 0) ➞ -27
MajorSum(0, 0, 0, 0, 0, 1, 2, -3) ➞ 5
// Because -3 < 1+2 < 0sCount = 5