LeetCode数组和字符串寻找数组的中心索引
Posted sxchen2012
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode数组和字符串寻找数组的中心索引相关的知识,希望对你有一定的参考价值。
class Solution {
public int pivotIndex(int[] nums) {
int sumLeft = 0;
int sum = 0;
for (int i = 0; i < nums.length; i++) {
sum += nums[i];
}
for (int i = 0; i < nums.length; i++) {
if (sumLeft == sum -nums[i] - sumLeft) {
return i;
}
sumLeft += nums[i];
}
return -1;
}
}
以上是关于LeetCode数组和字符串寻找数组的中心索引的主要内容,如果未能解决你的问题,请参考以下文章