LeetCode Find Pivot Index Solution Explained - Java

preview_player
Показать описание

Preparing For Your Coding Interviews? Use These Resources
————————————————————

Other Social Media
----------------------------------------------

Show Support
------------------------------------------------------------------------------

#coding #programming #softwareengineering
Рекомендации по теме
Комментарии
Автор

This logic also works fine

int sum=0;
for(int i=0;i<n;i++)
{
sum+=nums[i];
}

int lsum=0;
for(int i=0;i<n;i++)
{
lsum+=nums[i];
if(sum-lsum==lsum-nums[i]){
return i;
}
}
return -1;

I

sakshamkumarmishra
Автор

Love the fact that it was actually a long explanation cause you did a great job at teaching the example at hand.

hussainyunus
Автор

Nice explanation! However, in the code, shouldn't line 10 be nums [i - 1] instead of nums [i]? Prefix sum is sum of all elem to left of current elem (at i). That is also the reason we check for i != 0, since there is nothing to left of 0, so we cannot do nums [0 - 1] and so we assume prefix sum = 0 in that case.

charismatic
Автор

No dude, no mess at all thanks if the video is still longer bt you conveyed it nicely to people.

nandiniverma
Автор

if anyone listen you carefully, then easily understand...really very good explanation...
bro try to upload more video(leetcode) as much as possible...

RohitKumar-vbgt
Автор

Yo Man - You are doing great and one of the best leetCoder

tamimshams
Автор

6:56 we respect your efforts !! love you bro !! we respect you

nihardabhi
Автор

I love your way of teaching Nick Love from India💙

kavyabanka
Автор

You are the best leetcoder ever...your solutions are amazing with really good explanation!

truptiraut
Автор

Thank you so much and for also showing your mistakes, it helps us understand better

raginibhayana
Автор

it's more like a stand up dude ! 😂
but worth it

RahulSoni-brqd
Автор

that line " iam the king of mistakes"🤣🤣🤣🤣

fit_companion
Автор

I never make mistakes, which is why watch your videos.... Just kiddin' great explanation. Thanks.

rayprusia
Автор

I wasted 3 hrs in this problem. Trying to solve this

lifeofme
Автор

Your explanations are the best and I love you bruh (much better than neetcode), but coming directly to the total sum may be not so intuitive, was not for me. I first solved it with left to right and right to left loops.

Then to remove the extra space, I came up with the total sum.

dincerbeken