Find Pivot Index - Array - Easy - LeetCode
💻 coding

Find Pivot Index - Array - Easy - LeetCode

1 min read 235 words
1 min read
ShareWhatsAppPost on X
  • 1The pivot index is defined as the index where the left sum equals the right sum of an array.
  • 2If no pivot index exists, the method returns -1; otherwise, it returns the left-most pivot index.
  • 3The algorithm has a time complexity of O(n) and a space complexity of O(n).

AI-generated summary · May not capture all nuances

Key Insight
AskGif

"The pivot index is defined as the index where the left sum equals the right sum of an array."

Find Pivot Index - Array - Easy - LeetCode

Given an array of integers nums, write a method that returns the "pivot" index of this array.

We define the pivot index as the index where the sum of all the numbers to the left of the index is equal to the sum of all the numbers to the right of the index.

If no such index exists, we should return -1. If there are multiple pivot indexes, you should return the left-most pivot index.

Example 1:

Input: nums = [1,7,3,6,5,6] Output: 3 Explanation: The sum of the numbers to the left of index 3 (nums[3] = 6) is equal to the sum of numbers to the right of index 3. Also, 3 is the first index where this occurs. Example 2:

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

Constraints:

The length of nums will be in the range [0, 10000]. Each element nums[i] will be an integer in the range [-1000, 1000].

public class Solution {
 public int PivotIndex(int[] nums) { 
 
 if(nums.Length==0){
 return -1;
 }
 
 var left = new int[nums.Length];
 var right = new int[nums.Length];
 
 for(int i=0;i<nums.Length;i++){
 if(i==0){
 left[i] = nums[i];
 }
 else{
 left[i] = nums[i]+left[i-1];
 }
 }
 
 for(int i=nums.Length-1;i>=0;i--){
 if(i==nums.Length-1){
 right[i]=nums[i];
 }
 else{
 right[i]=nums[i]+right[i+1];
 }
 }
 
 if(right[1]==0){
 return 0;
 }
 
 for(int i=1;i<nums.Length-1;i++){
 if(left[i-1]==right[i+1]){
 return i;
 }
 }
 
 if(left[nums.Length-2]==0){
 return nums.Length-1;
 }
 
 return -1;
 }
}

Time Complexity: O(n)

Space Complexity: O(n)

Enjoyed this article?

Share it with someone who'd find it useful.

ShareWhatsAppPost on X

sumitc91

Published on 26 September 2020 · 1 min read · 235 words

Part of AskGif Blog · coding

You might also like