evenSum
and oddSum
to store the total sum of even-indexed and odd-indexed elements respectively.nums
and update evenSum
and oddSum
accordingly.leftEvenSum
and leftOddSum
to keep track of the sums on the left side of the current index.i
, calculate the sums of the remaining elements if nums[i]
were removed.leftEvenSum
and leftOddSum
as we move to the next index.