Find Pivot Index

Given an array of integers nums, calculate the pivot index of this array.

The pivot index is the index where the sum of all the numbers strictly to the left of the index is equal to the sum of all the numbers strictly to the index's right.

If the index is on the left edge of the array, then the left sum is 0 because there are no elements to the left. This also applies to the right edge of the array.

Return the leftmost pivot index. If no such index exists, return -1.

Note: This question is the same as 1991: https://leetcode.com/problems/find-the-middle-index-in-array/

Example 1
Inputnums = [1,7,3,6,5,6]
Output3
The pivot index is 3 because the left sum is 1 + 7 + 3 = 11 and the right sum is 5 + 6 = 11.
Example 2
Inputnums = [1,2,3]
Output-1
There is no index that satisfies the conditions in the problem statement.

Constraints

  • 1 <= nums.length <= 10^4
  • -1000 <= nums[i] <= 1000

Asked at 16 companies

</>

Your Solution

(Ctrl/Cmd + Enter)

Switching Language

Loading template...

Loading...

Sign in to save your progress

AI code evaluation

Get a correctness verdict, missed edge cases, and complexity analysis of your solution.

Sign in to evaluate