Lets say i want to start with the root node, [0, -1, 1, -2, -2, etc.] how can i accomplish that.
@kollarajasekhar650213 күн бұрын
Simply Super Sir, A Big Thanks to you:)
@MemesCompilation2314 күн бұрын
Love your content man its so easy to understand now im very thankful❤
@hridikakabir764518 күн бұрын
This video helps me to understand this topic, Thank you so much.
@haripriya803425 күн бұрын
Thank you so much sir... This is the best playlist for heap sort in the KZbin. Please give you more and more content....
@mayurikasoni498527 күн бұрын
Your voice is soo nice 😊
@vibhasavrАй бұрын
this code doesnt wor for right view it works for level order
@mohamedbilal5634Ай бұрын
great explanation
@ManikantaOnlineTrainingАй бұрын
Hi All , Started New You tube channel for Playwright Java Videos for www.youtube.com/@QAShastra?sub_confirmation=1
@Crazycaptain325Ай бұрын
sc=0(height of node) beacause of recursive stack space
@shubhamjaiswal7645Ай бұрын
plz try to explain in c++ for further POTD's .....
@kakabhagiwander5462Ай бұрын
🤛
@UdhyaKumar-z4dАй бұрын
nice thank you sir
@amritanand4135Ай бұрын
Informative one with very less views and likes.
@rookiedrummer68382 ай бұрын
Something dosent seems correct
@saranshdhyani31642 ай бұрын
Aby hindi m hi samjha le bhai kuch bi bolra hai
@Sumeshkumarback2 ай бұрын
All videos are awesome 😎😎😎
@saiprasanthmattupalli46112 ай бұрын
Nice explanation👌
@prateekkatiyar95322 ай бұрын
So good man
@RamakrishnaRao-rg5fr2 ай бұрын
chat gpt copy kada bro
@Akshaytg2 ай бұрын
Jookeeper
@hannahassainar69243 ай бұрын
Thank you very much.....
@bishalbashyal333 ай бұрын
shit english,
@amansheikh18013 ай бұрын
Informational. Keep it up. ❤
@jonathanrichard78723 ай бұрын
tq
@upendrachauhan52603 ай бұрын
do not waste your time by watching this video
@mdshafi70433 ай бұрын
Your 2nd condition is not correct. It should be (node1 == null && node2 != null) && (node1 != null && node2 == null). then return false. You also mention it in the video. Maybe it's a typo. Thanks for the explanation by the way.
@sharikkumar85813 ай бұрын
you are unable to explain.
@rohitsharma-xt8qe3 ай бұрын
In order to make your Example work in the Immutable class you should change private final Engine engine to public final Engine engine; Otherwise it will not be accessible in the main class as System.out.println(immutableClass.engine.speed); I wonder how come you are bale to access private object of Engine in the main method using ImmutableClass object.
@CHANDRASEKHAR-zj4lv4 күн бұрын
they are using the private Engine object in the same class i.e in main method to print the value, So there is no issue. here main class is Immutable class only.
@davidg35943 ай бұрын
Again, this accent! Nope!
@hemantkumardas33333 ай бұрын
Thanks...
@shindeajinkya25063 ай бұрын
public class SeperateZeroAndOne { public static void main(String[] args) { int[] nums = {0,1,0,1,0,1}; int left=0,right=nums.length-1; System.out.println("Start it"); while(left<right) { if(nums[left]==1) { while(nums[right]!=0) { right--; } int temp=nums[left]; nums[left]=nums[right]; nums[right]=temp; } left++; right--; } for(int i:nums) { System.out.println(i); } } }
@placeholder6633 ай бұрын
Guruji how are you doing Looking for upcoming OpenAI sessions
@sankalpsaxena24713 ай бұрын
May i know how the same can be done with Python, If any is not present or displayed then it should fail it with a message
@jhonsen98423 ай бұрын
Beautiful
@piyushsoni61093 ай бұрын
Very less information provided
@Greengoldnnn3 ай бұрын
Super
@omkarkale-p7q4 ай бұрын
very nice explanation
@sajiakhanam46464 ай бұрын
Ye kya hua...humne kahan inset kia last me value....ye to wahi reh gaya...5 number insted.
@jatinukey40624 ай бұрын
Didn't though this question can be solved by sorting with some small changes!!
@omarbousbia69164 ай бұрын
Great video. But does anyone know leetcode link for this problem?
@rahuldubey7544 ай бұрын
watching it now, and its still very good compare to other tutorials. great work @Coding Simplified.
@AidanDaGreat4 ай бұрын
Bro thanks a lot!
@sinurao10174 ай бұрын
good explanation but can you simulate multiple user scenario using threads?
@Fourthyearclglife4 ай бұрын
Tqs ku god
@swatiomar86034 ай бұрын
What will be the complexity in average and best case and how?
@sagarkolhe9884 ай бұрын
Nice explanation!! In this design pattern we are creating instance in factory class using if else depending on our requirement but what if class name of bike or car changes ? Then we need to change instance name in factory class. Can we loosely coupled it as well?