i have an issue with this question for a long time now it is solved thanks sir
@sarav-Frontend_Engineer2 жыл бұрын
Clear explanation! bro. Thank you!
@devanshprakash83543 жыл бұрын
Nicely explained sir thank you!!
@shivanshudabral32103 жыл бұрын
very nice teacher i found
@prashujain48442 жыл бұрын
best explaination
@raghavendraraviteja10552 жыл бұрын
Good explanation, thank you
@poonam.m.3 жыл бұрын
Excellent explaination sir!
@rohithbharathi36643 жыл бұрын
thank you for the detailed explanation
@vishalrikhi42972 жыл бұрын
thank you for the explanation!
@KNT_193 жыл бұрын
Here also we are using two loops. So I think this also n*n time complexity algo.
@krishnodas66782 жыл бұрын
Yes but those two are nested it becomes n*n only when it is nested, but here it has n +n = 2*n comparison bro , and O(2n) is O(n) , but in case of nested loops for each iteration of outer loop inner loop is running n+n++n ......n times i.e. n² comparison
@Ahadi237 Жыл бұрын
Please explain Cage- amalgamation graph, how we cane find it? thanks
@hardikachordia22693 жыл бұрын
Hi Can you please provide optimize solution if we have internal table of positive and negative integers with at least one positive integer, get the maximum possible positive sum
@devanshprakash83543 жыл бұрын
Can u please upload code videos on bfs,dfs, prims algo, kruskal algo etc etc also ☺️
@viveksharma1931 Жыл бұрын
Here time complexity is O(2n) or O(2^n) which is exponential hence for larger input size it is not approx equals to O(n)
@gamingsparrow29903 жыл бұрын
Sir please take class about hypergraph
@saranvasanth24035 ай бұрын
if the matrix is not balanced then how can I print it
@banutejagoud7928 Жыл бұрын
It is wrong at the step rightsum=sum=0; becuase you have updated the sum in the above steps by using for loop . Then how the rightsum will be equal to zero at first?
@Sksahu_1233 жыл бұрын
Sir please upload more + code link
@amanahmed60573 жыл бұрын
sir what if there is no equilibirum element
@shivanshudabral32103 жыл бұрын
plz upload all topics
@krishnashejul64183 жыл бұрын
int equilibriumPoint(long long a[], int n) { // Your code here int left[n]; left[0]=0; for(int i=1;i=0;i--){ right[i]=right[i+1]+a[i+1]; } int result; for(int i=0;i
@vivekmishra58763 жыл бұрын
U must have explained the logic/mathematics behind the for loop