Find Pivot Index
Given an array of integersnums
, write a method that returns the "pivot" index of this array.
We define the pivot index as the index where the sum of the numbers to the left of the index is equal to the sum of the numbers to the right of the index.
If no such index exists, we should return -1. If there are multiple pivot indexes, you should return the left-most pivot index.
Example 1:
Example 2:
Note:
The length ofnums
will be in the range[0, 10000]
.
Each elementnums[i]
will be an integer in the range[-1000, 1000]
.
Solution
Last updated