鱼C论坛

 找回密码
 立即注册
查看: 1126|回复: 0

[技术交流] 【朱迪的LeetCode刷题笔记】724. Find Pivot Index #Easy #Python

[复制链接]
发表于 2023-5-23 12:08:36 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 Judie 于 2023-5-23 02:22 编辑

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.



Example 1:
Input: nums = [1,7,3,6,5,6]
Output: 3
Explanation:
The pivot index is 3.
Left sum = nums[0] + nums[1] + nums[2] = 1 + 7 + 3 = 11
Right sum = nums[4] + nums[5] = 5 + 6 = 11

Example 2:
Input: nums = [1,2,3]
Output: -1
Explanation:
There is no index that satisfies the conditions in the problem statement.

Example 3:
Input: nums = [2,1,-1]
Output: 0
Explanation:
The pivot index is 0.
Left sum = 0 (no elements to the left of index 0)
Right sum = nums[1] + nums[2] = 1 + -1 = 0


Constraints:
1 <= nums.length <= 104
-1000 <= nums[i] <= 1000


Note: This question is the same as 1991: https://leetcode.com/problems/find-the-middle-index-in-array/
class Solution(object):
    def pivotIndex(self, nums):
        """
        :type nums: List[int]
        :rtype: int
        """
        

Hint
(1/3)

游客,如果您要查看本帖隐藏内容请回复


Hint
(2/3)

游客,如果您要查看本帖隐藏内容请回复


Hint
(3/3)

游客,如果您要查看本帖隐藏内容请回复


Judy
python version cs way?
class Solution(object):
    def pivotIndex(self, nums):
        """
        :type nums: List[int]
        :rtype: int
        """

        tempLeft = 0
        tempRight = sum(nums)
        
        for i, n in enumerate(nums):
            tempRight -= n
            if tempLeft == tempRight:
                return i
            tempLeft += n
        
        return -1

Gray
c++ version math way?
class Solution {
public:
    int pivotIndex(vector<int>& nums) {
        int total=0;
        for(int i = 0; i < nums.size(); i++){
            total += nums[i];
        }
        int temp = 0;
        if(total-nums[0]==0){
            return 0;
        }
        for(int i = 0; i < nums.size()-1;i++){
            temp = nums[i] + temp;
            if((total-nums[i+1]) == temp*2){
                return i+1;
            }
        }
        return -1;
    }
};

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-10-7 15:26

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表