It's a humble request to bhaiya Please make playlist on trees,array and strings..... I found at your channel in sliding window playlist it was amazing by seeing the problem im able to solve... Thank you so much 👍❤ Your teaching was perfect 😊
@rishabhahuja74139 ай бұрын
Sir waiting for trees and graphs!! sb achi companies graph puch rhi hai
@subhadiphazra26029 ай бұрын
Yes sir he is correct
@rishabhahuja74139 ай бұрын
Not comparing with anyone, Aditya bhai ka andaz hi alg hai
@mohit62159 ай бұрын
Vote for graphs playlist 👆 . Ab to hamara dard sunle 😢
@keerthankumarc26812 ай бұрын
correction the max element we need to find is char max = *max_element(str.begin()+start,str.end())🙃
@ManishKumar-ux5un9 ай бұрын
Thanks a lot for sharing your coding experience learning so well. I really appreciate your effort. Your way of tackling questions are awesome. Very nice!!. Please try to complete all backtracking questions as soon as possible (its a kind request to you). One more request: If possible please choose Tree and Graph also. (Tree first)
@lostcyrus85788 ай бұрын
Please complete the remaining dp playlist variations of LIS , kadanes ,grid nd rest others . waiting for it so much long time
@varunpalsingh38229 ай бұрын
Tree and graphs plz ❤
@yashassurendra56539 ай бұрын
Back in Business 😤🔥
@neelthakker70709 ай бұрын
Thanks a lot for the DP playlist ❣️
@sambhavjain36532 ай бұрын
@TheAdityaVerma bhai you are awesome man!
@cool78279 ай бұрын
There is virat in cricket And there is Aditya Verma sir for DSA👑
@ajaygopireddy31888 ай бұрын
Sir, please add TC in the next videos as well
@chandrachurmukherjeejucse58169 ай бұрын
Great lecture.
@mukeshrawat13049 ай бұрын
Wo Basics of Backtracking wali video ke Outro mai "subscribe if you want girlfriend" tha, Subscribe toh kar diya, wo girlfriend bhi mil jati to acha rehta, graph ki playlist 4-5 saal delay bhi ho jaye to chalega 😶
@mohit62159 ай бұрын
He will be with us ❤ only
@jswlprtk9 ай бұрын
Finally!
@lofireverbz-wy7go9 ай бұрын
month mai ek video daalre ho ,kuch to socho bhiaiya hmare baare mai
@Prateek_Mantry6 ай бұрын
thank you.
@suraj_patwa9 ай бұрын
Sir aak din live Instagram Or KZbin
@abhinjr49189 ай бұрын
Who all think he was dead...... I searched in google today is he dead than saw he uploaded latest video 2 months ago.... This is the correct time he has arrived ... Lagtha hai bhagwaan ne ek farishtha beja hai, verma bhai muje appke sath kam karna hai.... I am coming flipkart next year placement hai.....
@parvahuja76189 ай бұрын
sir stack ki playlist please complete kar dijiye
@rahularyan98089 ай бұрын
Graph please
@CrimeFilesJustice9 ай бұрын
Graph and tree please
@rishabsharma53076 ай бұрын
amazing video
@adhitya001Ай бұрын
What if the input is 7145.... Code will not work??
@akashpurbia43909 ай бұрын
🙌
@nagendrabommireddi84378 ай бұрын
thanks a lot
@VickeyKumar-lk3vj8 ай бұрын
I think k swap using inplace insertion sort would be better for this
@harki-v8m9 ай бұрын
how to make recursion strong i am facing issues in recursion
@diglive1238 ай бұрын
Can we have the base condition as k==0 or all the numbers in the result string to be in decreasing order?? I'm not able to intuitively understand the need for the start variable to go all the way to the end of the input string. Any help/comment on the same is greatly appreciated. Thanks in advance!!!
@Muigoku494 ай бұрын
Consider the example 7512, and let's say k=2. In this case we only need one swap, swap 1 and 2 and we get the largest number 7521, we did not even need 2 swaps, so in cases like these k will never reduce to zero and the recursion would never stop, that is why the other base condition is added.
@tirthshah28324 ай бұрын
C++ code: class Solution { public: void solve(string &str, int k, int start, string &ans){ if(k==0 || start==str.size()-1){ return; } char maxs= *max_element(str.begin()+start,str.end()); for(int i=start+1;i
@buntyagarwal77174 ай бұрын
Max_element main start+1 hoga right?
@mohit62159 ай бұрын
Aditya verma sir live ajao ek baar ❤
@_desouvik6 ай бұрын
Subscribed in the name of Bengali Girls
@himanirana65265 ай бұрын
Is it only me who feels that the volume is low?
@hritikaroy67976 ай бұрын
what will be the equivalent function for max_element() in JAVA? Can anyone help me?
@6ft23 ай бұрын
max()
@manasareddy8715Ай бұрын
char maxs = str.substring(start).chars() .mapToObj(c -> (char) c) .max(Character::compareTo) .orElse(Character.MIN_VALUE);