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 is0
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.
給予一個整數陣列
nums
,計算它 pivot 的索引值。
pivot 的索引代表他左邊元素的總和剛好等於右邊元素的總和
如果索引在最左邊的邊界,此時左邊總和會是0
因為沒有任何元素在他左邊了;同樣類推到右邊邊界。
回傳最左邊的 pivot 索引,如果不存在則回傳 -1。
LeetCode
C++