we can also put ans = INT_MAX rather than n it is quite easy to relate with the minimum situation
@tejasshaha66292 жыл бұрын
Bhaiya tabulation wale approach mai line no 49 pe instead of for(int j=1;j*j for(int j=1;j*j
@MittuRohith2 жыл бұрын
If you have come this far watching this videos.... Congratulations you are in top 10% keep putting your efforts ,you will get success... thanks you love barbar for your efforts
@narendra-mahto764910 ай бұрын
Paid course lene ke bad Bhi yahi lectures dekhne ka man krega.....Bhai ❤ Thanks Bhaiya❤
@vishalgarna4580 Жыл бұрын
This series never forget in education life ❤❤❤
@barnikroy52442 жыл бұрын
achanak kuch mahine me aap dsa dunia ka badshahh ban gaye.......kudos bhaiya
@shubhamtripathidev2 жыл бұрын
Recurrence code int minimumSquareNumber(int num , int target){ if(target == 0) return 0; if(num < 1) return INT_MAX; int take = INT_MAX; if(target >= num * num){ take = 1 + minimumSquareNumber(num , target - num * num);} int notTake = minimumSquareNumber(num - 1 , target); return min(notTake, take) ; } int MinSquares(int n) { int num = sqrt(n); int res = minimumSquareNumber(num, n); return res; }
@udaytewary3809 Жыл бұрын
Really maja aa gya bhaiya maine abhi tk dp.padhi nhi haa lekin kuch kuch samaj me aya mujhe iske liye thankyou bhaiya 😇😊🙏🙏🙏
@sukhjitsingh9592 жыл бұрын
Babbar Sir Watching all of your DSA Series until now and doing practice But still pending DSA video to practice .. so Thanks for all these series to Crack Top company jobs
@vedantraut256 Жыл бұрын
// COMPLETE CODE WITH COMMENTS class Solution{ public: int solve(int n){ // base case if(n == 0) return 0; int ans = n; for(int i=1; i*i
@rockkids89322 жыл бұрын
Garda Uda Diye hai , Bhaiya
@sachin65252 жыл бұрын
Lots of love Bhaiya from Odisha ❤
@mriduljain68092 жыл бұрын
Loving this Series Bhaiya!! #BelieveinBabbar
@lucario43992 жыл бұрын
@3:00 Code @9:11
@codingisfun-pranayharishch30012 ай бұрын
bhaiya apna khud ka course bechte h pr dusro ki promotion bhi krte h 😂 well jokes apart, bhaiya ne mast dp padhaya thank you bhaiya ♥
@codewith_ayushluthra52482 жыл бұрын
Best Placement course ♥
@codingindisguise Жыл бұрын
Enjoying thisss at next level🔥
@RahulKumar-wt9qc2 жыл бұрын
Still in backtracking but came here to support you bhaiya 🥰🥰🥰
@kashishchawla2754 Жыл бұрын
😂
@abd96412 жыл бұрын
I'm Starting your DSA course bhaiya wish me good luck, i assure you within 2 months I'll complete this...
@gajendralabana40062 жыл бұрын
Bhaiya DP pr to Bhool Bhulaiya 3 bn jayegi love u love
@shoaibkhan60222 жыл бұрын
I can say with confidence that this is the one of the best DSA course in the world. Love from Pakistan 🇵🇰❤️ bhaiya
@alexrcrew19752 жыл бұрын
man dsa also matters in pakistan
@shoaibkhan60222 жыл бұрын
@@alexrcrew1975 haha yeah bro ❤️
@dakshsinghrathore95842 жыл бұрын
nice to see we can unite through Technology..... btw do FAANG companies have their offices in Pakistan ??
@shoaibkhan60222 жыл бұрын
@@dakshsinghrathore9584 no bro 🥺
@dakshsinghrathore95842 жыл бұрын
@@shoaibkhan6022 ooh
@chiragagrawal4041 Жыл бұрын
thank u bhaia u are a one of the best teacher
@rohitjadon72687 ай бұрын
a lot of thanks for this amazing free content
@piyushk_071 Жыл бұрын
Amazing explanation bhaiya🔥🔥
@nishankdeep30842 жыл бұрын
thank you bhaiya maza aa gaya bhaiya
@jeetdesaimusic9 ай бұрын
Great explanation! Thank you bhaiya🙏
@iteself_me Жыл бұрын
81✅completed 👍Liked 2:55
@dEviL_bIsWaJiT2 жыл бұрын
Love you bhaiya ❤️
@Carnage-X Жыл бұрын
use j
@shreyashdubey59892 жыл бұрын
Thank you Bhaiya, Just keep going... More strength to you . This is helping us a lot✨✨✨✨
@sachin65252 жыл бұрын
Thoda feel lene ke liye yaha aaya tha .. Just completed Bsc and about to take admission in MCA
@alexrcrew19752 жыл бұрын
which clg
@oqant04242 жыл бұрын
Thank you Bhaiya
@glaciar_range32709 ай бұрын
respect = INT_MAX;
@pragyaverma2105 Жыл бұрын
Thank u ji ❤
@KACodes2 жыл бұрын
400k 🤩🎉🎉🎉
@shristisethiya44332 жыл бұрын
Great explanation
@jyotiradityayadav62472 жыл бұрын
Mza aa gya Bhaiya
@codeforlifehere Жыл бұрын
Day 4 of DP
@sagnikmodak4178 Жыл бұрын
Thanks sir
@shubhamtripathidev2 жыл бұрын
I think we wiil
@ANSHIKAJAINPCE21IT0096 ай бұрын
you are amazing
@nopecharon Жыл бұрын
Nice explanation
@HarshRaj-kp7gk2 жыл бұрын
#love bhaiya ❤️❤️
@dipakkumarsingh.7151Ай бұрын
very good
@shubhamtripathidev2 жыл бұрын
tabulation code int num = sqrt(n); vectordp(num+1, vector(n+1, -1)); for(int idx = 1; idx < num + 1; idx++) dp[idx][0] = 0; for(int col = 0; col < n + 1; col++){ dp[0][col] = INT_MAX; } for(int row = 1; row < num + 1; row++){ for(int target = 1; target < n+1; target++){ int take = INT_MAX; if(target >= row * row){ take = 1 + dp[row][target - row * row];} int notTake = dp[row - 1][target]; int temp = min(notTake, take); dp[row][target] = temp; } } return dp[num][n]; }
@KratosProton2 жыл бұрын
Great explaination
@fazerugbrug4392 жыл бұрын
loved it
@rafalefighter62072 жыл бұрын
thanks you bhaiya
@RandomGuy-xq1hk11 ай бұрын
Nice video 😇😇😇
@atharvgupta42184 ай бұрын
Leetcode 279
@tannubansal17182 жыл бұрын
Thankyou bhiya ❤️❤️❤️
@shivatrivedi69642 жыл бұрын
he is not Bhaiya....... he is LOVE....
@vikassahu60022 жыл бұрын
Awesome 👍👍👍
@sarangkale67613 ай бұрын
Liked👍🏻
@premsingh6967 Жыл бұрын
@premsingh6967 Жыл бұрын
@bhuppidhamii Жыл бұрын
Accenture ASE is asking this Q's 🙃
@alishaverma4071 Жыл бұрын
cant we optimize using a shortcut? like using float after cal under root of target number and then subtracting it with the sq of the whole no it comes closest to??
@mohammadatif12352 жыл бұрын
I have learnt alot from your lectures.Thank you bhaiya for this amazing dp series.
@saurabhmishra-nn5xs2 жыл бұрын
Sir please arrange also contest sir
@amitnagdev70612 жыл бұрын
Bhaiya apne 5 ka example liya tha usme answer 2 aana chiye n kyuki hame 1 aur 2 ka square utilise karna pad rha hai?.
@Geetanjalichawla2 жыл бұрын
🔥🔥🔥🔥
@rahuls11472 жыл бұрын
Just completed Trees now will revise once & then start 🔥🔥
@aniketambat6334 Жыл бұрын
understand++
@B-NikhilRichhariya11 ай бұрын
done
@AbhishekKumar-vl3cb2 жыл бұрын
🙏
@shreyaghosh4233 Жыл бұрын
bhaiya dp sheet ki link bhej do
@shachisinghal885610 ай бұрын
Sir i cant think logic on my own. Pls guide 🙂
@shubhamtripathidev2 жыл бұрын
can we write the code without using for loop
@shoebsifat62 жыл бұрын
Love you brother, Love from Bangladesh 🇧🇩
@dakshsinghrathore95842 жыл бұрын
kamon acho dada ?? am from WB btw 😅
@abhijeetbasfore68162 жыл бұрын
bhaiya notes update krwa do
@akhilpanwar69742 жыл бұрын
swad++
@KratosProton2 жыл бұрын
a
@ayaz.unstoppable2 жыл бұрын
Bhaiya keep doing it
@mayureshveeramallu70232 жыл бұрын
AWESOME CONTENT BHAIYA WATCHED EVERY VIDEO OF YOURS AND TH EXPLANATION IS TOP NOTCH. CAN YOU PLEASE MAKE A SIMILAR PLACEMENT PREARATORY COURSE ON SYSTEM DESIGN PLEASE!!
@KratosProton2 жыл бұрын
t
@lakshyabaliyan79172 жыл бұрын
Bhaiya leetcode par qus solve nhi ho rha hai.....anyone help😭
@kushalchakraborty69702 жыл бұрын
Start with easy questions. Try atleast for an hour. Still if you can't figure out the solution . First see editorials. Still if you can't figure out , then watch a solution video on yt. But at first try to get a strong base in DSA . I hope this will help.🙏🏻
@lakshyabaliyan79172 жыл бұрын
@@kushalchakraborty6970 bro lekin leetcode pr to qus ka format hi blkl change hota h krne ka kuch smj hi ni aata
@alexrcrew19752 жыл бұрын
time lagega bhai dhire dhirr hone lgega
@KratosProton2 жыл бұрын
e
@souravmehraniya28322 жыл бұрын
bhaiya orkitne videos baki ha is course me ? i mean kitne or videos me compelete ho ajega ye course ?
@vishalsinghshekhawat69212 жыл бұрын
1st view
@KhushiKavya-py1yj3 ай бұрын
2/10 consistency++
@Busyvlog46 Жыл бұрын
Thank you bhaiya
@SouravKumar-rg4yj2 жыл бұрын
🔥🔥🔥
@souravmehraniya28322 жыл бұрын
bhaiya orkitne videos baki ha is course me ? i mean kitne or videos me compelete ho ajega ye course ?
@elektrofreaks19822 жыл бұрын
🔥🔥🔥🔥
@souravmehraniya28322 жыл бұрын
bhaiya orkitne videos baki ha is course me ? i mean kitne or videos me compelete ho ajega ye course ?