Your teaching style is absolutely fantastic! The way you break down complex concepts makes learning enjoyable and easy to grasp.
@coldcoke9254Ай бұрын
Underrated channel man...I don't even know how to program in Java and still I watch your videos to understand the algorithms as in my opinion it is the algorithm that we need to understand, implement toh usko kr hi lenge...but most youtube channels focus on only coding the solution and not even bothering to explain the thought process and logic behind the solution and it's time and space complexity.
@divyanshukumar47573 ай бұрын
Thank you for making this question that much easier.
@aksharbrahm46189 ай бұрын
Genuine teacher .. Amazing Thanks for teaching
@CodingJoySoul11 ай бұрын
This question used to haunt me, I don't know why??? Now, after watching your lectures, it is like kya hi hai yeh question... Itni easy peezy. Thank you 🙏
@varunpalsingh38229 ай бұрын
sach me sir, aapke samjane ka tarika mast hai
@Pankaj-l8x5 ай бұрын
Baap level explainer ho aap ❤❤❤❤❤❤
@MayankGupta-un2kb7 ай бұрын
best explaination bhai
@karthikk117211 ай бұрын
God bless you sir.
@maniac022410 ай бұрын
Great explanation
@saurabhsuman311811 ай бұрын
Sir what what will be the time complexity and space complexity . Pls discuss it too.
@guptapaaras11 ай бұрын
Great video.. Kudos !!
@deeksha651411 ай бұрын
Sir could you please do discussion regarding time complexity also at the end of each question.
@Pepcoding11 ай бұрын
Sure. In all next questions.
@45_ritiksharma3211 ай бұрын
Sir, please teach system design
@sandipbhattacharjee781911 ай бұрын
class Solution { public String convert(String s, int n) { if(n==0)return s; StringBuilder ss=new StringBuilder(); for(int i=0;i
@mayankgandhi93368 ай бұрын
Sir please start preparation again, ruk kyu gaye
@garimasrivastava636411 ай бұрын
What will be the time complexity of this approach?
@sandipbhattacharjee781911 ай бұрын
sir why am I getting memory Limit exceeded while running this code, please help
@vishutiwari9911 ай бұрын
Bohot dino baad
@deeksha651411 ай бұрын
I am not getting that how the time complexity of this code is O(N) because it is having two loops inside each other so isn't this should be O(N^2.Can anyone pls help
@Pepcoding11 ай бұрын
beta, loop mei loop hmesha n^2 nahi bnata. Jaise socho bahar wala loop agar n/m baar chalega aur andar wala m baar to complexity n hogi na. waisa kuch ho rha hai. bahar wala loop rows ke barabar chal rha hai aur andar wala n/rows to total hua n. Soch kar btao ki samajh aya ya nahi?