724_Find Pivot Index
Given an array of integers nums
, 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:
Solution:
Idea:
First compute the sum of all elements in the array as s.
Loop over each element, add sequentially to get the leftSum, and check if the leftSum equals to the rightSum which equals total sum - current element - leftSum.
Time Complexity:
Space Complexity:
Previous714_Best Time to Buy and Sell Stock with Transaction FeeNext747_Largest Number At Least Twice of Others
Last updated