Leetcode 724. Find Pivot Index
Posted SnailTyan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode 724. Find Pivot Index相关的知识,希望对你有一定的参考价值。
文章作者:Tyan
博客:noahsnail.com | CSDN | 简书
1. Description
2. Solution
**解析:**Version 1,先将数组分为左右两边,左边为0
,右边是数组总和,遍历数组,左边加上当前位置的前一个数,右边减去当前位置的数,如果左右相等,返回当前索引,这样优先找到的是满足条件的最左边的索引,最后没找到,返回-1
。
- Version 1
class Solution:
def pivotIndex(self, nums: List[int]) -> int:
left = 0
right = sum(nums)
for i in range(len(nums)):
if i > 0:
left += nums[i-1]
right -= nums[i]
if left == right:
return i
return -1
Reference
以上是关于Leetcode 724. Find Pivot Index的主要内容,如果未能解决你的问题,请参考以下文章
[LeetCode] 724.Find Pivot Index
[LeetCode] 724. Find Pivot Index_Easy tag: Dynamic Programming