-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path724findPivotIndex.js
25 lines (25 loc) · 996 Bytes
/
724findPivotIndex.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/**
* 724. 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.
* @param {number[]} nums
* @return {number}
*/
var pivotIndex = (nums) => {
let prefixSum = [],
postfixSum = [];
for (let i = 0; i < nums.length; i++) {
let j = nums.length - 1 - i;
postfixSum[j] = (postfixSum[j + 1] || 0) + nums[j];
prefixSum[i] = (prefixSum[i - 1] || 0) + nums[i];
}
for (let i = 0; i < nums.length; i++) {
let j = nums.length - 1 - i;
if ((prefixSum[i - 1] || 0) == (postfixSum[i + 1] || 0)) return i;
}
return -1;
};