i have watched this problem in many videos but didn't get it including in striver video but you made it clear,your teaching is gold.
@sanamunikumar15128 ай бұрын
This video helped me to solve Next permutation, i followed Striver's also but couldn't resolve the issue. Thank you sooo much for the video.
@surabhichoubey29872 жыл бұрын
Bhiya aaj se pahle itne tarike se code Maine kisi channel Mai ni dekha great work keep uploading
@udaykulkarni56392 жыл бұрын
This paper pen idea is marvelous !! Keep it up
@avinashsingh77222 жыл бұрын
Bhaiya yeh paper wala idea bahut shi h 🔥
@CodingWithPrakash_2 жыл бұрын
Okay
@Web-mp7mp2 жыл бұрын
the best explanation of this question on youtube, i have seen 3-4 other "sheet makers" but none of them discus the logic like this, i also approached this problem in this exact way but was not able to formulate the logic thanks a ton
@mohdtabish_1 Жыл бұрын
imo it is one of the best solution i have ever seen on this topic.
@mdabuzar93002 жыл бұрын
bahut sahi.... papr pen idea sahu h
@nikhildwivedi21063 ай бұрын
good explaination
@parth24399 ай бұрын
i have watched this problem in many videos( including striver) for 2 days but was not able to understand it but you made it clear, thanks
@CodingWithPrakash_7 ай бұрын
Glad it helped
@aniruddhachunne30112 жыл бұрын
aap banao sir videos...mai dekh raha hu... 2 din me 18 videos to dekh hi li maine
@aviralkaushik94252 жыл бұрын
perfect so clear explanation .
@madanmohanpachouly61352 жыл бұрын
Bahut sahee bhai
@abhijitbiradar2 жыл бұрын
great video. detail explanation. Thanks
@Eklavyasharma-p2i Жыл бұрын
brother keep making videos you helping us a lot
@arpitasingh6849 Жыл бұрын
Thank you bro ....
@CodingWithPrakash_ Жыл бұрын
Welcome
@017farazbintariq9 Жыл бұрын
bohott bdia bhai
@AyushSachan22112 жыл бұрын
best explanation. thanks
@highlights3342 жыл бұрын
Thanks bhai pen paper explanation was superb😀😀
@byomakeshpanda80559 ай бұрын
Finally concept clear hua warna feel hi nahi aa raha tha iska Thank you😇
@CodingWithPrakash_8 ай бұрын
Great
@shreysom20602 жыл бұрын
Thankx bhai
@arththakur82472 жыл бұрын
best video
@AlaskaAlaska-xq4gk Жыл бұрын
Bhaiya very nice explanation
@SonuKumar-uq2rb Жыл бұрын
great job keep it up
@humtohchutiyehai10162 жыл бұрын
Nice Explanation
@Vishal_84_k2 жыл бұрын
Tnx for this💕💕
@DeepakAhirwar-j7i Жыл бұрын
thank you sir best explaination.❣
@CodingWithPrakash_ Жыл бұрын
Most welcome
@tripletgamingbuddies53654 ай бұрын
💗💗💗
@alankritshukla4954 Жыл бұрын
Nicely explained ☺️
@pratik48092 жыл бұрын
Good explanation
@adityarathi34202 жыл бұрын
Thanks Sir :-)
@abd9641 Жыл бұрын
Nice explanation brother keep uploading videos like this ❤❤❤
@snehajoywal172 жыл бұрын
The way you explain is much pretty and specially Hindi🥰 keep it up ⭐
@vinamrasangal8436 Жыл бұрын
hi sneha, in which college r u studying ?
@abhishekranjan10942 жыл бұрын
Awesome
@jatinukey4062 Жыл бұрын
Literally finally now i have understood this problem😊
@shubham89432 жыл бұрын
awsome explanation ✌👍
@abhijeetchourasia11982 жыл бұрын
keep going on and please also touch topic of Low level Desgin
@mrinmoyhalder72932 жыл бұрын
thanks, specially ye dip point kya kahe raha h, keep it up
@h.k.creation89448 ай бұрын
Excellent brother ❤💯
@CodingWithPrakash_7 ай бұрын
Thanks ✌️
@CodingWithPrakash_7 ай бұрын
Thanks ✌️
@shishirbhargav96272 жыл бұрын
PERFECT KEEP IT UP
@uttamsharma86008 ай бұрын
amazing explanation
@CodingWithPrakash_8 ай бұрын
Thanks
@sahilvashisht_0462 Жыл бұрын
class Solution { public void nextPermutation(int[] nums) { int n = nums.length; int k = n-2; //null check if(n==0 || nums==null){ return; } //find k for(int i = n-1;i>0;i--){ if(nums[i]0;i--){ if(nums[i]>nums[k]){ int temp = nums[i]; nums[i]=nums[k]; nums[k]=temp; break; } } reverse(nums,k+1,n-1); } void reverse(int[] nums, int start, int end){ while(start
If the number is large in size,then how can I calculate next permutations
@djdholan Жыл бұрын
sir please start this series and complete all of these quetions
@sarada_rout2 жыл бұрын
👍🏽
@arunchouhan53922 жыл бұрын
Ceri on
@arunchouhan53922 жыл бұрын
Aalas mat karo hum tumhare sath he
@atifakhtar882810 ай бұрын
bhai k=n-2 samajh nhi aaya ..iteration second last se shuru kyun hogi?????agar secod last se shuru hogi to to fir last element ka comaprison ho nhi paeyga? plz explain kr dom aap
@vinamrasangal8436 Жыл бұрын
shukla ji ne kya haal hai pehchana mujhe ?
@razzneupane4012 Жыл бұрын
Bhaiya I have been stucked in the test case [5,1,1]...Could you pls help me out........ int n=nums.length; int k=n-2; if(nums.length==0 || nums==null) { return; } //find k for(int i=n-1;i>0;i--) { if(nums[i]=0;i--) { if(nums[i]>nums[k]) { int temp=nums[k]; nums[k]=nums[i]; nums[i]=temp; break; } } reverse(nums,k+1,n-1); } void reverse(int[] nums,int start,int end) { while(start
@CodingWithPrakash_ Жыл бұрын
Yaar copy pen leke dry run kro Apko hi fyada hoga usse cos interview mai bhi dry run krna hota hai This way u will also find bug in your code Good exercise for engineers