⚠⚠In the binary search assesment try to solve Qno: 540.single sorted array problem || but in the test case they added unsorted array like this --> [2,3,1,1,3]
@gabrielfono84410 ай бұрын
As software engineer here in Seattle , I could tell you all this dude has an amazing content. On my free time , instead of wasting my time on social media watching videos that don’t provide any value to me , I spend my whole time watching kunal as I am preparing to switch to MAANG this year. Thanks a lot
@car_holic19953 ай бұрын
bhai please tell us how can we get jo there in seattle..please guide us
@gabrielfono8443 ай бұрын
@@car_holic1995 Are you leaving in the usa ? it is straight forward to move to seattle.
@vathsavff75403 ай бұрын
@@gabrielfono844 damn broo still active
@piyushrawat424 ай бұрын
Bro it took me 2 years to start your course. The entire playlist has been saved since you uploaded all the 60+ videos as a playlist. But since last 2 weeks I have been watching them relentlessly and the amount of confidence I have gained in my coding skills has drastically improved. Big thanks to you my man. And I really crack up when you crack a joke in between the lecture. May God Bless you Kunal just like you have blessed us all. I am a QA Engineer btw
@shubhamagarwal1434 Жыл бұрын
# GOD Of DSA Hi I am a 11yr exp java guy was searching for some free course on youtube for DSA came accross your course and i just feel love in it...all in one place that too with java...i must say you have done very awsome work...your name will be there on this earth as long as DSA will be asked in interviews...May Supream Lord Vishnu Bless You.. ✌🙏
@aadeshsharma00013 жыл бұрын
How Kunal make course- "complete dsa course" How Ed tech mafia make courses - Dsa for beginners Dsa intermediate level Dsa advance level Dsa for FAANG Dsa with c++ Dsa with Java Dsa with python Dsa in real life . Dsa in 100 days. Inshort it's their business to keep making courses otherwise what they will do if they make a single course. Hope u r getting their strategy for non ending course making business.
@L-CSE-AyanKumar3 жыл бұрын
Best Comment Ever! This is the absolute truth...
@shomiksingh59293 жыл бұрын
DSA toh DSA howe hai, chahe C++ ho ya GoLang. :P Love your content Kunal, while my peers are busy watching Money Hies i am spending my time here in your DSA playlist.
@deepanshu53863 жыл бұрын
@@shomiksingh5929 😂😂dangal op🔥
@prakharagrawal70103 жыл бұрын
You forgot "Master DSA in 5 Hours, Marathon Class" 😂😂😂😂😂
@L-CSE-AyanKumar3 жыл бұрын
@@prakharagrawal7010 🤣🤣🤣
@ShOcKw4vEGaming Жыл бұрын
This guy is on another level in terms of teaching method. You don't know kunal how much you are helping people learn these complex things in the easiest way possible. Thanks a lot. You deserve the world kunal.
@mohitbalwani3 жыл бұрын
That's what I expected! I already know binary search but knew that I will definitely learn something new from every video of this playlist. And guess what, I learned the improved version of binary search formula (start + (end - start) /2 ) ! Thanks a lot Kunal ❤😄
@KunalKushwaha3 жыл бұрын
My pleasure!
@CodeforTonight3 жыл бұрын
@Mohit Same for me Folk..
@SKILLCRYSTAL3 жыл бұрын
same with me I know binary search but I never thought what if we don't know in which order array is sorted? Thanks, @ Kunal for such a good course.
@agyaani80603 жыл бұрын
Same bhaiii...Thanks kunal❤
@mohammadejaz5403 жыл бұрын
I learn here some new concept like Order Agnostic Binary search before this I didn't hear the Agnostic Binary search 😂
@Mahak_Jainn9 ай бұрын
02/03/2024 - day 7 of learning DSA+JAVA
@darkpunk99605 ай бұрын
Where did you reach bro??
@Mahak_Jainn5 ай бұрын
@@darkpunk9960 bro now I'm currently doing practice and trie, graph , ye nhi aata baaki ka thoda bahut aane laga hai
@darkpunk99605 ай бұрын
@@Mahak_Jainn thanks you keep doing!
@NibhaPandey19993 ай бұрын
Ab kha tak pahucha bhai
@rakeshkumarparida982 ай бұрын
@@darkpunk9960 In the middle of the ocean😁
@jashanbansal26133 жыл бұрын
Although I got to know about Ur channel just yesterday, But I wanna tell ki U r doing great man. Some people cannot ingest the fact that someone junior to him is also doing these things and getting that much audience. Its just hurting there ego, Nothing else.
@KunalKushwaha3 жыл бұрын
Facts
@payalsingh72383 жыл бұрын
His continues efforts inspires us to do the same, literally!!!
@gilfoyle22113 жыл бұрын
mid = start +(end -start)/2 blew away the problem I was facing in passing huge arrays. Then came order-agnostic that compares start and end element to decide whether ascending or descending array🤯 Thanks Kunal, I'm enjoying this course🚀
@jaynimje37902 жыл бұрын
Help. I have doubt. Unless we tell a function what to return, it wont return anything. Then how does the Binary search know that it has to return the index of target. I am posting this on random comments. If anyone knows the answer to this please comment.
@shivendrashrivastwa4566 Жыл бұрын
@@jaynimje3790 Brother, he is returning the mid and mid is that index. 😊
@ousmanesangary658 Жыл бұрын
@@jaynimje3790 Our goal is to find and return the middle element only. The start and end pointers are just there to go left or right whenever the target element is less or greater than the middle element. If the target element isn't found, we will then return -1 instead of the index of the middle element. Hope this helps.
@Krishnaeagle-ex4zj5 ай бұрын
Instead of remembering mid = start +(end-start)/2 can't we do the same as mid = (start/2) + (end/2) ??
@gaishiya76963 жыл бұрын
"Binary Search made easy by kunal" The Next Aditya Verma!!! Almost everyone would ignore the debugging part,start+(end-start)/2,logN when they do teach Binary Search.However you stand apart from em!
@KunalKushwaha3 жыл бұрын
Learning made easy and fun!
@swayam41483 жыл бұрын
Brother, I earnestly respect you & your hardwork that you're doing for us without any personal gains...Kudos to you bro😊💓👏
@KunalKushwaha3 жыл бұрын
Thanks a ton
@jaynimje37902 жыл бұрын
Help. I have doubt. Unless we tell a function what to return, it wont return anything. Then how does the Binary search know that it has to return the index of target. I am posting this on random comments. If anyone knows the answer to this please comment.
@manikmahajan2603 Жыл бұрын
@@jaynimje3790 At 37:20, you can see on line 12 that the return type of the function int. This is how we tell the compiler that this function will return a value of type int.
@zaid6493 жыл бұрын
In this point 17:46 The Integer Value will be 5. Most Appreciated Person @Kunal Kushwaha who make a DSA playlist like a Candy, once you start and you will not Stop..!!
@fero___30052 жыл бұрын
Yaeh
@SoloScholar02023 жыл бұрын
I turned off my adblocker, only to reward you for this amazing explanation kunal. Keep up the good work mate. Do share your payment details, I would love to help you. Thanks once again. ♥♥
@vishaldinesh2 жыл бұрын
I doesn't work like that
@funtrap22892 жыл бұрын
Were to get assignment answer code I'm confused about assignments Can any one explain
@funtrap22892 жыл бұрын
@@sayedhaneef6068 where to get answers
@train968711 ай бұрын
ans are available in leetcode itself@@funtrap2289
@pranavchaitu10 ай бұрын
is it a pickup line bro?
@PROTECHRAHUL3 жыл бұрын
Kunal bhai is doing what legends do😍.
@joshjoshi56912 жыл бұрын
Had my teacher explained the same way, I would have enjoyed Java. Switched to Python. Now back to Java because of this course. I'm enjoying java because of you. Thanks a lot
@KunalKushwaha2 жыл бұрын
Great to hear!
@reshmipaidipati29842 жыл бұрын
me too
@lucifercoxi83245 ай бұрын
This course will surely make me understand DSA in 2024👌
@BG-lj6fw2 жыл бұрын
I'm actually short of words to praise this. I just wish that as a student i justify your hardwork . All the very best to you. Keep radiating goodness.
@imlearninghelppls254411 ай бұрын
I absolutely love how thorough you are in your explanations. This is the difference between you and also my professors from university. Most of the time they just give a very simple explanation without covering some details that are ESSENTIAL for understanding even the most basic algorithms. Thank you very much for helping me, I cannot wait to watch this entire playlist!
@santhikakani1627 Жыл бұрын
Before watching your video, I thought these data structures are very difficult, after watched your video now I am getting confident I can also solve DS problems. Thank you Very much for your explanation.
@rashirasoi61582 жыл бұрын
Hey Kunal !! This is the best course which I found in youtube and Now I started loving data structures your way of explaining each concept is outstanding. You are doing a great job. I have recommended this course to all my friends. Thanks alot for making such amazing videos.
@KunalKushwaha2 жыл бұрын
It's my pleasure
@funtrap22892 жыл бұрын
Were to get assignment answer code I'm confused about assignments Can any one explain
@jaynimje37902 жыл бұрын
Help. I have doubt. Unless we tell a function what to return, it wont return anything. Then how does the Binary search know that it has to return the index of target. I am posting this on random comments. If anyone knows the answer to this please comment.
@Nitishkumar-qy5gm2 жыл бұрын
Kunal bro your teaching style is awesome I watched your all video without skipping a single time
@Murtaza-p8z1m Жыл бұрын
I am short of words to praise this course .Thanks dear Kunal for providing us all quality education.
@KunalKushwaha Жыл бұрын
Glad to hear that
@Murtaza-p8z1m Жыл бұрын
@@KunalKushwaha 🥹🫶🏻
@roshanmhatre88103 жыл бұрын
Explanation was wonderful! A request, please don't stop Guidance and non-technical videos. I dunno what happened but due to actions of some students, it would be unfair for all other thousand of students who need it.
@indianintrovert2819 ай бұрын
Best ever Java course Avaliable on KZbin... I am addicted to learning Java
@67SAYAK3 жыл бұрын
I am having 2 year exp in a good product company [not fang], still I am learning from your playlist everyday , and preparing for switch, thanks brother .
@KunalKushwaha3 жыл бұрын
You can do it!
@rakeshkumarparida982 ай бұрын
bro did you switch ?
@suvraneelsaha89732 жыл бұрын
the way you found out the level k in the binary search is hust magic . so simple yet effective
@moeen0073 жыл бұрын
Never have I ever understood Binary Search better. ❤️ from KASHMIR!
@shailuyadav62272 жыл бұрын
DSA KZbin playlist is Diamond, but GitHub link is Platinum so Overall thank you Kunal giving all of me a great material ❤❤
@nishantsingh25133 жыл бұрын
Kunal = EdTech Startup Killer 😂😂
@ajayjb87273 жыл бұрын
I still don't know, why people are disliking these videos. These videos are like individual gem.
@indukumari1933 жыл бұрын
After watching only 3 videos of yours I m like..... Yaar banda etna effort kr rha h aur etna sikhne ko mil rha h to like to krna bnta h... Pta nhi etne km likes kyun h jbki views to 37k show ho rha... Great work kunal
@rakeshbabu47903 жыл бұрын
Don't care about negative comments,Kunal....in every field negative comments will be there.... just see the postive side and move on..... though you know how to overcome this..but I didn't like other people showing finger on you,... always postive vibes
@KunalKushwaha3 жыл бұрын
Literally no one cares about them lol, they made no one proud and say things to make themselves feel better. My work speaks for itself and it will help lakhs of students.
@rvstech8435 Жыл бұрын
like i was scared of dsa now i am loving it
@sudeepkanda Жыл бұрын
32:05 : why we use start+(end-start)/2 ? --> integer max value limit 48:30 : for checking whether array is ascending or descending in a sorted array just check first and last elements if all are equal the both also will be equal else there always is difrrence
@hrithikpandey14823 жыл бұрын
20:24, here boys, along with binary search , he taught us one more thing xD Great tutorial btw
@pradyotranjan54622 жыл бұрын
Hey Kunal, I am a first year student. I really enjoy java and have been doing it since 10th standard. I really love your videos man, you are my only mentor and I l really look up to you. I am already trying to improve my coding knowledge(First sem.), I really wish to become someone like you in the near future. Thanks a lot for being out there for students like me.
@codewithvenky Жыл бұрын
Hi Now we Both on same year ...I really wanna like minded person in Java
@anushka4722 жыл бұрын
I am completely shocked by the quality content that you provide Man!!!! Definitely going to share it with all my friends ..Thanks for providing it for free .Its much more than any paid course on any platform.
@jaynimje37902 жыл бұрын
Help. I have doubt. Unless we tell a function what to return, it wont return anything. Then how does the Binary search know that it has to return the index of target. I am posting this on random comments. If anyone knows the answer to this please comment.
@npooja9976 Жыл бұрын
@@jaynimje3790same doubt
@vyasm2556 Жыл бұрын
@@jaynimje3790 Go and watch the previous videos in his playlist
@sanyasee172 жыл бұрын
I have seen a lot of videos to understand Binary Search also tried paid courses but I found this is the Best Video to understand Binary Search. Lots of Love Kunal Bhai ❤
@ananddangwal842411 ай бұрын
Thanks Kunal 👍
@akashyadagouda8962 жыл бұрын
Nice video, good for all kind of students. Must watch for BS
@thenjproduction40613 жыл бұрын
Since I'm an absolute beginner and started a little late, I'm having a hard time catching the pace of the course. But no worries, Aaram sey sab samajke karenge.
@KunalKushwaha3 жыл бұрын
Yep do it on your own pace
@shahabuddinhaque50473 жыл бұрын
same here
@xyzadmin1236 ай бұрын
hey kunal plz complete the DSA bootcamp you are the best teacher in the world.... i am waiting for your upcoming videos
@dipalisavaliya295 Жыл бұрын
Anyone can learn with Kunal!! Extremely detailed and fairly explained! And that too for free ! Thanks a lot :) God bless you:)
@abhineveash10 ай бұрын
Amazing kunal sir, I have recommended to all my colleague friends
@joseintech2 жыл бұрын
Still big fan on how you explain the train of thought to get to the solution and not just say it. So much easier to remember
@manojrai5613 жыл бұрын
I have only watched 3 videos of your DSA and I become your fan. Really excited to watch all your DSA videos.
@automationneemo2 жыл бұрын
Superb playlist on DSA. Learning so many things. Thank you!
@rockeykumar33482 жыл бұрын
Kunal kushwaha bhaiya you are the gem 💎 personality for many students ❤️❤️
@vilaspawar69132 жыл бұрын
sir, it's from from every one please complete the course we are waiting for your next videos and these videos are very helpful please sir complete the course
@ritikatiwari37532 жыл бұрын
you are amazing kunal great contribution to community !!!
@venkataratnam17552 жыл бұрын
G.O.A.T in DSA(Kunal)
@008jaiminbhatt6 Жыл бұрын
The Most Simplified Explanation Ever....🙌🙌🙌
@haricharanpal17613 жыл бұрын
Good series for the community, easy to understand and without unnecessary masala...
@saketbarnawal21673 жыл бұрын
Just love this episode of Binary Search. Thank You so much for this series.
@sukeshreddy22862 жыл бұрын
Love you kunal, Thank you soo much!
@NithyaShree-lv3my5 ай бұрын
You are the best at teaching how the code works❤ I have literally watched so many channels but this one is the best one so far!!❤️❤️
@PranayKapoor3 жыл бұрын
I am an experienced IT profession working on banking side ... so money was not the main driving factory, dream to work for FAANG was...thanks for showing us the way
@vishalljeganath4 ай бұрын
Best Video to learn DSA. Its great to understand the each concept of DSA very well.
@chai43 жыл бұрын
Present ✊ Edit- just finished watching the whole video.. yay 😃
@KunalKushwaha3 жыл бұрын
Hope you enjoyed it!
@kiransatyaraj Жыл бұрын
he has given the best content, onto the next one, binary search is more clear now, thank you kunal
@animeshrose2 жыл бұрын
Thank You again Kunal, such a wonderful lecture now I think how we we're taught, looking forward to your tree and graph videos.
@KunalKushwaha2 жыл бұрын
You're most welcome
@shuklshivam2 жыл бұрын
Amazing Video, @kunal. Leaving this comment for the YT algorithm
@amitpalsingh84083 жыл бұрын
you are awesome Kunal. First explanation then topic-based questions , this approach is a game-changer. Your teaching inspires us to learn more. This boot camp is gonna be a huge success.
@jaynimje37902 жыл бұрын
Help. I have doubt. Unless we tell a function what to return, it wont return anything. Then how does the Binary search know that it has to return the index of target. I am posting this on random comments. If anyone knows the answer to this please comment.
@vcIND18 Жыл бұрын
@@jaynimje3790 reason is we let start = index 0 and end = index last not element at last so it return index
@priyanshuanand4115 Жыл бұрын
Best lecture of Binary Search. I never learnt in this way.
@naveenkumarm45112 жыл бұрын
Oh,my god such a great explanation 😍😍😍😍😍
@sudhanshukushwaha63512 жыл бұрын
now people belong to village can also learn quality education from kunal 😍😍 #dsawithkunal #qualityeducation
@akashp48633 жыл бұрын
I knew this concept, I'm coming from non coding bg. I watched it anyway and his explanation is clearly the best
@KunalKushwaha3 жыл бұрын
Glad you think so!
@codingweb39043 жыл бұрын
This course is just on another level.... I am addicted to it
@annesyabanerjee18923 жыл бұрын
pls complete this on java very soon
@codingweb39043 жыл бұрын
@@annesyabanerjee1892 ye is trying his best, don't be selfish
@darshanrajashekhar5914 Жыл бұрын
i love the expression you gave at 15:27 man attitude like thats it..... no more cycle this is beauty of dsa
@kamrulislam384111 ай бұрын
Kunal the GOAT. I love your lecture man. You are life saviour for Juniors
@PrasadRanjane-rl9zx Жыл бұрын
These videos have helped me a lot this past month. Very grateful to Kunal for doing this, for helping students like us prepare for interviews. I am very eager for the upcoming videos and I hope you post them as soon as possible.
@avanishdubey65563 жыл бұрын
Thank you for clearing my all doubt about binary search as well as adding some extra knowledge about Binary Search.
@Saimelodies2512 Жыл бұрын
one of the best derivation of binary search time complexity i have ever seen!
@KunalKushwaha Жыл бұрын
You’re welcome
@apoorvaranjeet1573 жыл бұрын
Blessed to have such mentors in life
@mufu58332 жыл бұрын
you are great teacher. it helped me lot.
@sam_s33442 жыл бұрын
Thanks :) Adding for self-reference. 33:47 - muid = (start + (end - start) /2 ;
@MaximoGamesTV3 жыл бұрын
This is not just a video. Thank you very much for the valuable informations and lectures.
@factsandqueries84995 ай бұрын
The fact that this course does not have one negative comment proves its quality
@navyaanimone52092 жыл бұрын
I am from arts but keen to learn Programming. By gone through your videos really my curosity of learning coding is increasing doubly. All videos have the desire of getting awards. All are the best when comparing to other coding youtube videos. THANKS KUNAL BRO 😊
@rishukashyap30772 ай бұрын
Thank you Thank you Thank you soooo much Kunal for these precious tutorials. This is the one and only course that actually helped me learn and apply DSA. I'm truly grateful!!!!
@adityadhumal072 жыл бұрын
Stay tuned I will upload the next video soon. What rhyme❤️💯😃 57:25
@nikhilteja81713 жыл бұрын
Kudos man... wow!... I enjoyed this lecture bro... CHEERS!... I learnt abount binary search nicely... keep going on bro...
@barshapaul94613 жыл бұрын
you know i really didn't like kunal that much but after when he even explained what that notification is saying about git???man he is awesome :D
@technicalcrackers53273 жыл бұрын
Wow this is the real learning every bit of thr video is infused in my brains memory great work kunal bhaiya!!!!! ❤❤
@KunalKushwaha3 жыл бұрын
Glad to hear that
@adarsh_endeavour2 жыл бұрын
This Binary Search was the most amazing topic most of the previous topics were hard and so hard for me to scale but when I came to this binary search lecture in this playlist then It helps to learn linear search as well as this binary search topics also Taught so beautifully. Thanks Kunal .That's totally amazing and mind opening lecture for me.
@jaynimje37902 жыл бұрын
Help. I have doubt. Unless we tell a function what to return, it wont return anything. Then how does the Binary search know that it has to return the index of target. I am posting this on random comments. If anyone knows the answer to this please comment.
@jaspreetsodhi Жыл бұрын
@@jaynimje3790unless it's explicitly mentioned return type is void u will have to return something otherwise it will give error in code
@Neuroage243 жыл бұрын
Best Video of Teaching DSA on KZbin
@Neuroage243 жыл бұрын
I have never saw someone teach like this You are awesome Bro 🤞
@sanketkumbhar88873 жыл бұрын
THE PERFECT BINARY SEARCH VIDEO ON KZbin 🔥 thanks kunal
@naveenkumarm45112 жыл бұрын
I am very lucky bro, because so many people are studying some where and then there are coming ,but I am it is 1attempt I am understand crystal clear Edit:if we studied more and more then we are more polished Never worry
@krishnadahule-gw7wd3 ай бұрын
I don't know till now why to use start+(end - start)/2 Now i know Thank you kunal bhaiya 😊
@orekisato91452 ай бұрын
Thank God for Kunal. U are our Savior in programming ❤
@JP-bj1fx3 жыл бұрын
I am learning java .I am beginner.I learning easily because of you.
@lalithas972 жыл бұрын
I have a bear minimum idea about java. I am so happy to watch this video. I didn't have any idea about binary search. The way you teach is amazing! Because I didn't feel I was watching 1 hr video.. I enjoyed learning about binary search. THANK YOU!
@possible132 жыл бұрын
Best line by legend 20:25 size does not matter
@dimplechauhan91183 ай бұрын
completed and going ahead with full excitement and curosity.
@snehchauhan79733 жыл бұрын
Just fell in love with the course❤
@amrendrasingh64482 жыл бұрын
You are doing the best. Hope you roll out other videos soon on tree, map and other important topics.
@Akash-bhumbak3 жыл бұрын
Your point is very good that you explain even the smallest things. 🙌🙌