Skip to content
This repository has been archived by the owner on Oct 3, 2022. It is now read-only.

Find Pivot Index #10

Closed
prog-harsh opened this issue Oct 12, 2021 · 2 comments · Fixed by #14
Closed

Find Pivot Index #10

prog-harsh opened this issue Oct 12, 2021 · 2 comments · Fixed by #14
Assignees

Comments

@prog-harsh
Copy link
Owner

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:

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

@Kesav890
Copy link
Contributor

can you please assign me this?

@Kesav890
Copy link
Contributor

@prog-harsh Done!

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants