Dear Kunal, The posterity will thank you for this service..nobody would have done this for free.each and every course that you have made is THE best and uncomparable. needless to say your code approach is a piece of art. This is coming from someone who is not from software background at all but is slowly getting confident at DSA. Cheers and God bless.❤
@STORYFACTUBE-x7q Жыл бұрын
@KunalKushwaha in the question 5 of this video there is index out of bound exception how to get rid of that?
@knowledgemeal Жыл бұрын
@@STORYFACTUBE-x7q I got same when we want to search elements at the end
@Mlakshman-w9k Жыл бұрын
/** * // This is MountainArray's API interface. * // You should not implement it, or speculate about its implementation * interface MountainArray { * public int get(int index) {} * public int length() {} * } */ class Solution { //this will return the answer if found otherwise return -1 public int findInMountainArray(int target, MountainArray mountainArr) { int peak = searchPeakElement(mountainArr); int leftSideOfMid = orderAgnosticBS(mountainArr, target, 0, peak); int rightSideOfMid = orderAgnosticBS(mountainArr, target, peak, mountainArr.length() - 1); if(leftSideOfMid != -1) { return leftSideOfMid; }else if(rightSideOfMid != -1){ return rightSideOfMid; }else { return -1; } } //this will return the peak element in an interface(array) int searchPeakElement(MountainArray mountainArray) { int start = 0; int end = mountainArray.length() - 1; while(start < end ) { int mid = start + (end - start)/2; if(mountainArray.get(mid) < mountainArray.get(mid + 1)) { start = mid + 1; }else { end = mid; } } return start; } int orderAgnosticBS(MountainArray mountainArray, int target, int start , int end) { // to check the sorted array is ascending or descending order boolean isAsc = mountainArray.get(start) < mountainArray.get(end); while (start mountainArray.get(mid)){ start = mid + 1; } else { end = mid - 1; } } else { if (target > mountainArray.get(mid)) { end = mid - 1; } else { start = mid + 1; } } } return -1; } }
@mananshah27387 ай бұрын
There's no competition, this guy is the best teacher when it comes to DSA and Java.
@devprasad87677 ай бұрын
Striver also
@megas_alexandro7 ай бұрын
@@devprasad8767 Kunal is unmatched
@swathi_bee46 ай бұрын
FR
@masteradvisor5947 ай бұрын
1.1 million views and how people are not even giving like. Seriously this people dont deserve such content.
@swathi_bee46 ай бұрын
exactly
@debjitdas14705 ай бұрын
true bro only few deserve these
@Ankit_Maurya_125 ай бұрын
Bro Exactly..🙏🏻🙏🏻
@coolgadgets893 ай бұрын
you can't end the video in one time so one person gives 10-20 views okk?
@masteradvisor5943 ай бұрын
@@coolgadgets89 it doesn't work like that. If it did people would just write scripts for fake views. KZbin is much smarter than you
@shivcharansinghrawat42243 жыл бұрын
man.. he is no trash talker, he is the real deal
@harshdixit73096 ай бұрын
bro are you able to solve these question,if yes then please tell me that how can i build the logic for these type of questions
@atharv73534 ай бұрын
@@harshdixit7309 Practice.
@progdev-mz2fj3 ай бұрын
@@harshdixit7309 just try time to understand easy problems and logic behind them .try to solve problem by writing first on the notebook
@devanshdewan25973 ай бұрын
@@harshdixit7309learn the logic from the solutions/discussions and code it on your own . You will build the logic slowly after following this method. After some time you will solve questions on your own . The idea is to keep going
@TheDailyWordChannelАй бұрын
@@harshdixit7309 Bro If you cant build a logic to any problem try to understand and find what the requirement - first then check all the possible ways (here we can check individually means linear search if so more comparisons so we opt binary search) if you didn't get idea then go for the solution in that you see why they only choose this you need to ask yourself and clarify.
@khushi82584 ай бұрын
There is no course on YT like this and no mentor can teach like this, so we want you to complete this course .Beacuse the only drawback of this course is that the couse is incomplete. it's a request not only from me but from many of the students those who are following you. ❤❤❤❤
@kartikgoel96712 жыл бұрын
I have never commented on anyone's video in my last 10 years of using KZbin, but when this guy said, he need support for this kickass course at 01:55 I am doing it, hope to see further lectures soon.
@KunalKushwaha2 жыл бұрын
you are too kind
@SarathkumarS-zl2ck7 ай бұрын
Hey Kunal... I'm from middle class family, I want to join a great DSA bootcamp, but I can't. Bcz I don't have lots of money to spend the course. Already my parents spent lakhs for my graduate. But you havebeen giving a great lectures of DSA for giving free. Now I give lots of love from heart. Please consider KUNAL love from my heart to money. I think love is greater than money. I don't know can I say this to you " Stay blessed ". I have to attend an interview in ZOHO please bless me to crack an interview in ZOHO. " Hey KUNAL " is not just a sentence, it is an emotion. Love from Tamilnadu .
@MuhammadArslan-px1sm6 ай бұрын
how did your interview go? And also what was your tech stack?
@swathi_bee46 ай бұрын
hope you get placed in a good company
@SarathkumarS-zl2ck6 ай бұрын
@@swathi_bee4 still nope... TRying best in Zoho
@SarathkumarS-zl2ck6 ай бұрын
@@MuhammadArslan-px1sm hey :(, still I'm not placed...
@TamilTipsAbdur5 ай бұрын
@@SarathkumarS-zl2ck whether its tough or you are trying for better companies ah bro?
@ahaddesirement45943 жыл бұрын
We don't want any fascinating animation or editing to learn algorithms or logic building process. We need videos like this where we can learn just how to do all this with pen and paper. This is the best. Thank you ❤️.
@ayushjhanwar2262 жыл бұрын
Apna college roasted!
@priyanshuvettori51792 жыл бұрын
No apna college was harmed in this comment
@sudhanshukushwaha63512 жыл бұрын
apna college videos are like pass time just provide half knowledge
@harshsrivastava23242 жыл бұрын
Sahi bola yarr c++ mai array ka challenge mai sidha Google kickstart ka question samjhne lage or koi logic hi nahi tha
@jazibbashar33322 жыл бұрын
@@sudhanshukushwaha6351 woh khali hath hilati h upr upr bol KR background music se baaqi video khatam tata by by
@Anilkumar-reddy4 күн бұрын
Hi, I have 5+ years of expirence as a java develop, I feel this course in one of the best course
@harshverma12213 жыл бұрын
Literally man 4 hours 🔥🔥,its not a joke , this dude is seriously on another level hats off bro..
@harshdixit73096 ай бұрын
bro ,please tell me that how can i build the logic for these questions
@ashishmathewabraham7278 Жыл бұрын
It's pretty revolutionary in the way that you teach this course. 12+ years into the industry and I have never seen someone teaching with so much passion. People can take this meticulous art of yours into other industries as well. Cheers!
@KunalKushwaha Жыл бұрын
Wow, thank you!
@deveshkarde8361 Жыл бұрын
@@KunalKushwaha Hey there is ArrayIndexOutOfBoundsException in Q5 1:57:13 . Please check once, as target>arr[end] and value of "end" goes beyond the length of the array while doubling it.
@suvarnat4999 Жыл бұрын
@@deveshkarde8361 even i have the same doubt ,when i tried to get the index of an element which is at the last,it is showing index out of bounds.kindly reply to this please.
@sumitjha3868 Жыл бұрын
i have also the same problem
@sayedfarzadfekrat5318 Жыл бұрын
@@sumitjha3868 imagine that the array is of infinite size.
@harryharry292210 ай бұрын
Hey Kunal, You're a legend, NO ONE can teach DSA like you...... I've literally shared this playlist with entire computer science enthusiasts of my surroundings...... I Love You kunal.... and a big shoutout to you
@ayushtamra18003 жыл бұрын
Other youtubers: Puts a video "Learn DSA in 4 hours", for selling their paid courses💸 Kunal: Puts a video "Learn binary search in 4 hours in detail" for the community, so that you don't miss a single thing in your interview. This is what makes him different from other youtubers✨ Thanks man such a detailed video🔥🔥
@gauravgautam59632 жыл бұрын
what about now. In this video he talk about GRAPH, DP 2:19:11 time but still it's 7 months . Now just tell me is this the community work as of now he is just taking sponser and sponsers
@bahultyagi2 жыл бұрын
@@gauravgautam5963 AGREE BRO
@dillirajtimalsina2 жыл бұрын
woh bahut ghamandi he vai
@yogeshyts2 жыл бұрын
@@dillirajtimalsina time ni h uspe abhi bc full time krta h job
@NormieCyrox2 жыл бұрын
@@bahultyagi sab harami hai bhai......ek point pe ake inhe alas ane lagta hai
@maharshisoni389 Жыл бұрын
I am 9 years experience java developer but before watching this video dsa i was not comfortable but moment of joy was i paused video on moutain array question and i tried on leetcode and it passed successfully i am so happy thanks god bless you hare Krishna radhe radhe ❤
@rahulghatge44253 ай бұрын
Till now it is the best course for the DSA I get on youtube. I was not able to solve a single DSA question, but now it seems that I can solve a lot of questions. Even my logic has been increased. Thanks to all Kunal Kushwaha .
@HIZ3N2 жыл бұрын
Being a Bsc CS graduate , this course is really helping in finding my love for programming again. I'm really loving the course Kunal, Thanks a bunch.
@kunalgupta90883 жыл бұрын
kunal be like pehle teaser de do wrna itni badi movie se dr na jaye log😂.......thanks kunal. Video on problem practice was much needed
@moeen0073 жыл бұрын
Ek dum sahi boley
@bhuvanachandra5121 Жыл бұрын
Some people are actually forgetting that we have to use an infinite array for Q5. In infinite array, there would be no out of bound error. Currently you are checking with finite array and that's why you are getting out of bound error. Just to clear your doubts that kunal also used an finite array in the example, also you'll definitely find the target number at one point of time if you use infinite array. So no out of bound errors
@Thammudu_____ Жыл бұрын
Thank you
@mohanappriyakarunakaran Жыл бұрын
Thank u so much
@limitXbreaker Жыл бұрын
how can you say that we are going to find the target element in an infinite array. Say for example your target element is 2019312 but array does not contain instead it contains number greater than this and smaller than this then?
@Shaheer-xs5os Жыл бұрын
@@limitXbreaker If the problem is starting to find a number in the infinite array, then there must be one... else the loop will run infinitely and the question also understands this... but even if it does not exist then it will return -1. because we are not going much further than our target range... understand the solution first...
@kunj8342 Жыл бұрын
@@limitXbreakerbro we are doing binary search in chunks if target is not between start and end we will increase size of chunk and go ahead but if target is between start and end that u have said that u element smaller and greater than target so we will just apply binary search in that if target elemnt will exist u will find if not like 2019312 does mot exist so binary search will return -1 it means u don't find the target so target element does not exist in array and u will exit the method because if you have found the range in which the target elemnt exist then you will not move to next chunk or range if target is not found because if you move to next chunk target element is smaller than the start element so our condition will violate that target must be between start and end...
@swathi_bee46 ай бұрын
"For anyone new to the channel and wondering whether to start watching his videos... just DO ITTT! Watch a single video. If not this one, pick a short video and watch it completely. You will just fall in love with his teaching. I wish I had found his channel earlier." I wish if he has greater reach ...he deserve more than 5M subscribers easily.
@tharun11212 жыл бұрын
This Bootcamp made me to lose the fear of programming and solving the problems. The quality of teaching is gold. Kunal we also want videos for BinarySearch Tree and Trees ,Dynamic Programming . Thank you for this amazing Bootcamp.
@onlyy_panss Жыл бұрын
I don't normally like/comment/subscribe. But this guy deserves the best. The way he teaches, the way he explains complex things , his examples ... Everything is so accurate that I am now motivated to prepare and start applying in FAANG companies
@sukritisinha6822 жыл бұрын
I got into CP cuz people told me if you want a good company Cp is the only way, I struggled a lot with it, even now I can't solve many problems. Browsed through a ton of courses on youtube and litreally gave up in between cuz I got bored, I was so frustruated because I could not solve a basic question and it was super stressful. I found your channel and the only thing I feel is why didn't I know about you earlier.Finding you is like doobte ko tinke ka sahara . So much details, such easy explanation. You are the best! would say you inspire me a lot. I am in my second year . :)
@NikhilKumarSingh-c9d3 ай бұрын
In second year of my college I have completed DSA by watching videos of Apna College and currently in third year I came to know about Kunal Sir ,let me tell you guys the in depth explanations by him is wonderful. I came to know about about many new concepts. Thankyou sir for this wonderful series.
@AyanAli-lj9tt2 ай бұрын
Bro I am in 2nd year so where should I study from apna college or here
@rajiulislam80192 жыл бұрын
The thought process that Kunal has build in my mind, i am literally coming up with my own approaches.. which i used to fear earlier. The way he builds the intuition, opens the road to so many approaches.. Kunal is a gem :)
@KunalKushwaha2 жыл бұрын
more to come
@nomadd7492 жыл бұрын
@@KunalKushwaha great work!
@rishitamandal24922 жыл бұрын
true i agree
@pratham6232 жыл бұрын
@@KunalKushwaha please complete the remaining data structures and algorithms .
@ogungbemioluwamayowa658 Жыл бұрын
My fears for Java algorithms have literally been dissipated. It's a great work you've done here. Can't thank you enough Kunal
@ZainAli121-s6p Жыл бұрын
If you are new to this course and confused whether to start or not. Believe your problem solving technique will be changed and you will be like- "Oh wow how easy it is" after watching this. So clear all your confusions and get started with this masterpiece. It will change your attitude towards problem solving
@TradeVisionariesАй бұрын
i am tamil boy and i don't well at english but i can understand your teaching thanks for delivered this god bless you kunal
@PROTECHRAHUL3 жыл бұрын
I wasn't studying dsa because i was thinking i won't be able to do it. But his explanations are making me feel like Can Crack FANG. You got our respect Brother.
@siddhartharaja94133 жыл бұрын
Amazing brother, many will definitely agree with you,also huge respect to our legendary mentor!!😊😊
@abhra007das83 жыл бұрын
*The best Binary search lecture* Your way of approaching a problem is next to none.. really appreciate the effort u are putting to produce such quality contents for us..hope this gem 💎 reaches to millions who are starting their journey in coding. *Thank you very much Kunal.*
@KunalKushwaha3 жыл бұрын
Thank You!
@MayIComin9993 жыл бұрын
@@KunalKushwaha will you continue for fully lecture or not?
@thedoomsday86593 жыл бұрын
Hey Kunal really great content , but a feedback from me , don't brag about same thing free , quality content and all over and over again , just mention it start of the video or probably in the end ,
@akash-3 жыл бұрын
Hey bro if you understand the last que can you please clear my doubt: I didn't understand why in the que11 (when m=n) the minimum answer is max value in array because as kunal explained first, we find the sum of all the subarrays and then the answer is the minimum amongst them so it should be minimum value in the array?
@SKILLCRYSTAL3 жыл бұрын
@@thedoomsday8659 why won't he, he is doing this for free and it's his choice how much time he would say , you just focus on learning.
@vineetrana98422 жыл бұрын
Hey kunal i started following your course and now I am literally in love with coding. I wake up everyday and watch your videos and study religiously like an addiction. So thank you for that and wish you a goodluck in your journey.
@tirthbhingradiya47036 ай бұрын
i had purchased the paid course of DSA but this guy totally beat that course with single handedly thank you so much Kunal for this course
@aasthasarkar49863 жыл бұрын
Never skip the videos in which he discusses the interview questions. I was always aware of the algorithms but was never able to come up with the correct approach. After seeing his videos it has helped me a lot with my approaches. Thank you so much. God bless you!
@TempMail-ml7xp Жыл бұрын
I was stuck in lot of courses including free and paid . Your way of teaching is unique and very helpful ,this playlist is far better than those overhyped courses . I am from non tech background with zero coding skills , now I'm able to solve easy and medium problems which was nightmare for me .Kindly finish this course , this is currently the best course for java and DSA. Thanks a lot for making this course.
@KunalKushwaha Жыл бұрын
Glad you like them!
@Jaibalayya-ju1gf9 ай бұрын
pls continue dsa playlist @@KunalKushwaha
@Deepak-ls1yt5 ай бұрын
Glad your video is the saviour for me in learning the DSA part heart felt thanks for you @Kunal kushwaha!❤️
@Rahulyadav-lv7dh3 жыл бұрын
Some incidents change people life forever ,encountering kunal's channel accidentally is one which changed my life Thanks mate for awesome content You are doing great don't let anybody else tell you otherwise
@KunalKushwaha3 жыл бұрын
Thank You bro ❤️
@dashlife88382 жыл бұрын
Nothing is an accident. The fate of humans is controlled by Algorithms.
@skykid64852 жыл бұрын
@@KunalKushwaha you litreally changed my life for good bro
@anushree37443 жыл бұрын
"spoon feeding in the long run teaches nothing but the shape of the spoon"- point noted with thanks. Thank you for your effort. Kind of got how to approach binary search problems for arrays would be great, if you could include few problems with no arrays, like sqrt, aggressive cow, pow etc
@dhanvibhat29314 ай бұрын
The premium course we are getting it for free....My huge THANKS to Kunal Kushwaha....
@riyaxgupta Жыл бұрын
Nothing is tough when Kunal is teaching. Also you are showing what perfection really is through the quality of your content.
@jayachithra18163 жыл бұрын
This course is a real gold mine for anyone trying to learn DSA, and this is coming from someone who is working in the Tech field for almost 10 years now. I wish I had this when I was in my Bachelor's.
@prabingupta74382 жыл бұрын
did you find qany solutions to bypass the error ?
@saikatbishal3 жыл бұрын
Kunal is himself amazed by the way he is coming up with his explaination ideas.
@HimjyotiSarma-s9e3 ай бұрын
The best course on DSA. And I am glad that I am part of it.
@heavenlyway58242 жыл бұрын
What a series, Kunal, when I see someone teaching other than you in other platforms. I always think how amazing your DSA contents are and their teaching is not even comparable with your teachings. You're huge asset to the computer science community.(I usually don't comment or like but for you you absolutely deserve it man for every DSA videos).
@KunalKushwaha2 жыл бұрын
I know, thank you ❤️
@zadnarock59122 жыл бұрын
@@KunalKushwaha Well that I know is a bit narcissistic
@__LAmar__2 жыл бұрын
@@zadnarock5912 not really
@deepas.85096 ай бұрын
anyone who feels the need to buy a course for java or dsa have obviously not seen your channel. and that is a really really sad thought cause this is pure gold. i literally have no complaints for this channel. it cannot get better than this and im just on the 15th video on a 66 videos long playlist...... at this point, ill buy your course if you ever decide to commercialize your teachings and itll still be worth every penny. please please please create more tutorials!! recommending your channels to all my friends cause youre a king.
@abhishektoppo294111 ай бұрын
Kunal is, without a doubt, the best teacher I've encountered so far. He has an incredible ability to inspire us to believe that even the seemingly impossible is achievable.
@shahabsanowar34119 күн бұрын
this is the best DSA course in entire youtube channels
@balumotukuru3 жыл бұрын
I will start learning programming even if I am an 80 year old if the instructor is sooo good !! People can steal money and other material things but they cannot steal knowledge. Kunal - Goddess Saraswati is with you. Keep rocking !!
@shubhanginijain29103 жыл бұрын
Current situation: my mind is acting like a hallway so many ideas coming regarding the question, probably helping me to find logic. Best problem solving practice.
@pkknowsnothing2 жыл бұрын
Bro the the submission for that medium question was 100% faster than any other previously submitted solution. That blew my whole mind. You are absolutely great Kunal. Thanks for teaching us.
@KunalKushwaha2 жыл бұрын
Nice work!
@sivaramakrishnareddypadala2 ай бұрын
love this playlists kunal as a cse 2nd year student from one of the top universities in india i am not able to understand what they said and i am paying huge amount to my btech ka degree but i am not getting the skills.Really this playlist is enough...Thank you bro and love you
@dipeshjadhav15462 жыл бұрын
Mad respect for you brother. Totally falling in love with this course.. didn't realize that I have been watching this since 4 hours
@yawningcat25112 жыл бұрын
1:55:59 For all those who are having Array out of bound Exception, Try this instead: while (target > arr[end]) { int temp = end + 1; // this is my new start // double the box value // end = previous end + sizeofbox*2 int newEnd = end + (end - start + 1) * 2; if(newEnd
@dfdga34gfd2 жыл бұрын
this also works static int ans(int[] arr, int target) { int start = 0; int end = 1; while (target > arr[end]) { int newStart = end + 1; end = end +(end - start + 1) * 2; if (end < arr.length) { end = arr.length - 1; } start = newStart; } return binarySearch(arr,target,start,end); }
@prabingupta74382 жыл бұрын
@@TUMMIDINAVEENN bro did you find solution for this without using arr.length
@Mosesdaniel775 ай бұрын
Coming from a non-CSE background, I was eager to learn DSA but didn’t know where to start. On the recommendation of my classmates, I began with your playlist, starting with arrays, which greatly expanded my knowledge. Your encouragement, especially when you say that watching your lectures can help crack companies like Google and Amazon, has always motivated me. Thank you, Kunal. May God bless you!
@avantikaroy5146 Жыл бұрын
Hello Bhaiya! I don't know if you're reading this but I have my internships coming up and there's no course better than this on earth that has been able to give me this much confidence and knowledge in dsa. First of all thank you from the bottom of my heart for this. Secondly I really want you to continue this course and cover trees, graphs and Dynamic programming. I know it takes a lot of effort to put out quality content like this but make it paid if possible, I would be the one to purchase this for sure and judging by the comments many many will. Content like this is worth paying for and justified. I hope to see more videos from you in this course :)
@malemyengkhom563 жыл бұрын
I have a gut feeling that this course/playlist will change my life 🥺❤️. You are amazing kunal 🔥❤️
@akiebnazir42642 жыл бұрын
These tutorials are amazing not only for beginners but also for those who know the basics/mid-level of their programming career and Kunal is saying again and again comment on these videos it is not for his own benefit but he is really a good person with a nice and great heart who really wants to help more and more people in this field. You may find millions of lectures/tutorials even paid courses but you will not see the course like this and tutor like Kunal.... Thanks, Kunal Bro...
@anshpethe4 ай бұрын
a big shoutout to you sir still after three years still worthy than other paid courses even better than PW java + DSA is also not come close to this course
@ikrasiddiqui12642 жыл бұрын
The best explanation anyone could get whether free or paid.. Amazing work Kunal!!! Humble request to please upload the remaining topics of the series, I could not get this type of explanation on any other channel. PLEASE PLEASE!!!!
@deveshb7933 жыл бұрын
Just completed watching and solving all the questions and honestly, you've completely changed my perspective at approaching a question, thank you so much for putting in so much efforts and providing such amazing and high-quality content for free!
@pixelpirateplays Жыл бұрын
No paid course is better than this!! beleive me.. I have bought some top rated courses.. nobody comes close to Kunal when it comes to simplifying things... I'm loving every sec of this PURE masterclass ❤️
@igONESHOT4 ай бұрын
It took more than a 4 months to decide me whether I should learn dsa in python or in java. I have saved your playlist since ages but these youtubers overwhelmed the dsa in java but finally I started the dsa with you. And you know what, it was the best decision I have ever made. Thank you Krunal ❤
@dhansbisht94333 жыл бұрын
before this i was just aimlessly solving bs problems without even understanding what is going on but now i feel like i'm understanding it a lil more as each question passes. never felt this excitement while doing dsa questions lol thanks Kunal
@kiranmenon30443 жыл бұрын
Us after seeing the lecture: :Mazaa aaya" Kunal: "Main yeh mazaa hindustan ke har CS student ko dena chahta hoon"
@CodeforTonight3 жыл бұрын
Hindustan ke har ek *Engineering students ko dena chata hoon... Mine is Chemical whats your?
@kiranmenon30443 жыл бұрын
@@CodeforTonight e&e bro
@DHANUSHSUBRAMANIS10 ай бұрын
i'm from tamil nadu.....--> thalaivaaaaaa..... you r great ............
@vimalchandarpk66349 ай бұрын
evlo bro muduchrukehhh
@rockstarsubrat77344 ай бұрын
kunal is right -- this is the amazing video for free in You tube >> I thing no one can teach like this
@Happiness_sonia7 ай бұрын
I was about to buy some paid course for dsa and was in search for same.. by god's grace i found you.. thanks a ton for providing another level content to us with amazing teaching style 🎉🎉🎉
@gauravranade11287 ай бұрын
For real , same happened with me , the way he spoke with confidence in his first vid in the playlist created an impact which forced us to try this god level course!!
@deepas.85096 ай бұрын
HOW ARE YOU TEN TIMES BETTER THAN ANY PROFESSOR/KZbinR I HAVE EVER STUDIED UNDER???? i used to absolutely hate coding cause i never understood how to think and visualize like a coder. and yet here i am. at 3 in the night, coding with ENJOYMENT!! uh... what???? so so so much love and admiration from India ❤ please dont ever stop teaching. and can you do some in cyber security and ai? very much interested in those fields.
@tsdineshjai85653 жыл бұрын
I just want to say this, may God bless you more Kunal, so that you can do more good things to the community. I have to admit this course is the best one available in the market.
@thalaajithvisuvaasi2 күн бұрын
Before finishing this video i started solving all the other problems before watching. As you are saying again and again. it is indeed the best course in youtube for dsa
@dinobandhuchakraborty52022 жыл бұрын
did so many online/offline java courses, but the way kunal is approaching the logics literally no one can come close to the level, i repeat NO ONE....alot of love brother❤❤❤
@yoursyasuo58683 жыл бұрын
Without a doubt, this is the best problem-solving session on KZbin ever!!! This record is going to be broken by none other than Kunal himself, by bringing more sessions like this. No other content creator can reach this level of mastery of explanation (with fun ofcourse) and... Mazaa aa gya!!
@PushpendraSingh-zs9gc Жыл бұрын
I am not so good in English communication so I always try to learn by Hindi medium videos like CWH but when I started to watch your videos you just break my assumption and really really Enjoying your course. You just simplified every thing in such way that everyone can learn by basics. Love u Bro...
@Coding.hubb243 ай бұрын
One of the best DSA course on the INTERNET ❤
@vedanthbaliga76863 жыл бұрын
Just wow Kunal! I solved 5 problems and did not realize how time went. This would surely build my confidence to solve assignment problems! Target is to solve the other problems tomorrow :)
@hello_kitty1234-r9l4 ай бұрын
alert! - this course is highly addictive
@SanjanaRelekar4 ай бұрын
yes it's an addictive like series ♥
@vasujhawar.69873 жыл бұрын
"If you need to find the floor return end, If you need to find start return ceiling", - Kunal Kushwaha😛😛 Brother take some rest sometimes, we all know you are giving your best. The youngest teacher I am learning through...
@harinazrekar42392 жыл бұрын
please continue this playlist kunal bhaiya .. we know that youtube is not your main income stream it's second income stream and whatever revenue happens you just put that back into the community but we need more videos cuz we dont understand anything from other youtubers .. you're , you were and you will always be the GOAT ..
@vanshajduggal3 жыл бұрын
You are genuinely one of the best creators who is actually really passionate about what you are doing.Great job man
@naveengolakoti41112 жыл бұрын
After going through this course I was able to solve most of the leet code questions on my own. I really loved the way u explained about several patterns that are involved in solving most of the questions. What I can finally say is, this is the best DSA course and I'm so confident that even a paid course can't reach to even 30% of the way your teaching and the way you are dealing a problem and approaching it. And moreover the course content and structure is designed so well that a beginner can understand it. Thanks a ton Kunal.
@hryuz1065 ай бұрын
Watched to binary search, and I can guarantee that it is the best course. The teaching methods, or anything. Fully understandable. Far better than any other pain courses. I wish I found this channel earlier. YOU ARE JUST AMAZING!!!!
@aritrachatterjee1473 жыл бұрын
Man I have no problem to say this is one of the best video I have ever watched on binary search questions , questions of each and every particular topics are covered. Kudos to you man ❤️
@vedanthbaliga76863 жыл бұрын
It released only half an hour back and it's a four hour long video😅
@aritrachatterjee1473 жыл бұрын
@@vedanthbaliga7686 I haven't watched the entire video yet I just watched the contents of the video by skipping that's what I said that each and every particular topics are covered.. I hope u got me
@vedanthbaliga76863 жыл бұрын
@@aritrachatterjee147 Yeah
@pankajmanik77893 жыл бұрын
At such a small age, you have understood concepts so well and having done that, you even delivered teaching them in again better way 😍 Thanks Kunal, keep it up 👏
@pasito2873 жыл бұрын
@@videoschannel5077 In this channel he is teaching what other teaching at the coaching institute and charges around 20k .. and I am the one of that just it ... me padhane ke baat kar raha hu
Take a bow Kunal!! I had tried solving about 15 - 30 binary search problems, but was still not able to figure out when and how to modify the while loop. Your explanations are the best by far of any KZbin tutorial I have seen. Thanks a lot for your efforts. 💯💯
@Udaykumar-jc7tvАй бұрын
This guy is Menace in coding stuff And providing this quality for free Such a great treasure for students like me who are getting iiritated for some junk stuff and addicted to his videos thank u so much Bro
@aadhi62796 ай бұрын
I just started this playlist a week ago, and now I'm really enjoying learning DSA! I thought DSA questions were not easy to crack, but now I'm making progress. Let's see where I am in a month or two. See you then!❤❤
@cricoritz15936 ай бұрын
I am also starting now, how's it going for you
@swathi_bee46 ай бұрын
Same here
@vikranttyagi52322 жыл бұрын
Kunal is absolutely killing it with his way of solving these problems and making it easier for others to understand. Thanks a lot man.
@sarthakyadav99503 жыл бұрын
I love he is trying to teach us every single pattern of questions from a particular topic
@AbhishekSingh-1117 күн бұрын
I accept it that it is the best Dsa playlist but best is not best until it is completed it's request to complete the series as many people like me are waiting because till now no other course has better content then this one
@vasujhawar.69873 жыл бұрын
MAZZA AAYA. 🤣 I LITERALLY STOPPED THE VIDEO TO WRITE THIS COMMENT. I LAUGHED SO HARD 🤣 🤣 THAT PURI NEEND CHALI GAYI, HAVE BEEN BINGE WATCHING YOU. LOVE YOU DUDE! 💕💕💕
@vasujhawar.69873 жыл бұрын
Rofl on Rahul Gandhi meme. 😁😁😁
@KanakSharma-xm7li5 ай бұрын
you are really the best teacher for java+ DSA👍
@amanverma8258 Жыл бұрын
Don't have words to thank you for such an amazing course at no cost. Please continue with the series, and thanks again :)
@yashfashafiq13082 ай бұрын
I used to think that platforms like Amazon and similar ones were beyond my reach, but Kunal sir has really opened my eyes. His approach demystifies the complexities of data structures and algorithms, making it feel achievable and relatable. Now, I feel more confident tackling challenges in the tech world! Thanks for breaking down those myths, Kunal sir
@nprfunnyshorts91292 жыл бұрын
Absolutely I want to say one thing Kunal, You are the God to me because before this course I don't know how to prepare and get job in FAANG and other Top product based company but now I am also realizing oh I can do this.
@depressedguy35663 жыл бұрын
Commenting only after completing the 4 hr video, this course that you are creating ( if completed ) has the potential to create history. I've watched most of the lectures available on KZbin regarding BS. The only tutorial somewhere near close to this was Aditya Verma's binary search course. Absolutely loved this tutorial. Waiting for you to explain advanced topics. I just hope you'll complete the course. Fingers crossed. Thanks for busting myths and the hype about CP. Kudos to your efforts. Waiting for your next video
@KunalKushwaha3 жыл бұрын
Thanks!
@twi44583 жыл бұрын
In 1st Question: What if my arr is like this arr[] = {4,5,56,81} and target element is more than 81 like "82"; This will return Garbage value. So what is the solution to this corner case?
@depressedguy35663 жыл бұрын
@@twi4458 refer to timestamp 44:00
@Rinkeshkumarsinghh2 жыл бұрын
@@twi4458 yes this is my question also
@ALEXA_PLAY_VIBE_SONGS Жыл бұрын
Hey Kunal, I really appreciate the effort you put into delivering content in a very easy way that everyone can understand. I'm currently working in a non-tech role at one of the MAANG companies, and I've been given the opportunity to transition into an SDE role internally. I have my interview in two months, and I wanted to say a big thank you for your amazing and helpful content. It's been invaluable in my preparation for the interview. I'm particularly grateful for your clear and concise explanations of complex concepts, as well as your focus on practical application. Your videos have helped me to solidify my understanding of fundamental of DSA and I'm confident that they will be a major asset to me in the interview. Thank you again for your dedication to helping others learn. I'm excited to continue using your resources as I prepare for my interview, and I'm hopeful that I'll be able to make the transition into an SDE role.
@hacktivist Жыл бұрын
All the best for your interviews. I hope you crack them.
@pxnishant Жыл бұрын
I hope it went well :)
@SubhamChauhan-hw1jvАй бұрын
sir , your course is the best java +dsa course i ever found on youtube thankyou sir
@diptesh_roy3 жыл бұрын
1:52:30 - This is the best part 🤣🤣🤣 Best Binary Search Video 🔥🔥🔥 Totally changed my thought process to approach any bs problem...🙇🙇🙇 Thanks Kunal for all your efforts 🙇🙇🙇 Your video quality (4k)🥺 and teaching is NEXT LEVEL 🔥🔥🔥
@Autocrat20053 жыл бұрын
This is the best course I have seen so far
@tejapabba25523 жыл бұрын
I never seen tutorials like yours Kunal. Quality and quantity was superb .mark my words this channel will cross 1 million subscribers very soon.
@KunalKushwaha3 жыл бұрын
Thank you so much 😀
@RAHULKUMAR-he3kz4 ай бұрын
@kunal : you are the inspiration to many people. Huge respect.😊
@gaurishaaaa Жыл бұрын
I'm finally able to combat my dsa fear because of your course. I'm in my second year of btech rn from a tier 3 college following your videos and prepping up for ahead. Thankyou Kunal for the best dsa course.
@ETteam-v1c Жыл бұрын
us
@moviesflix708211 ай бұрын
bhai have you completed this series?
@moviesflix708211 ай бұрын
@@ETteam-v1c bhai have you completed this series
@harshmathurx3 жыл бұрын
Good stuff, I have been through 4 courses for DSA and this one is with the best explanation. Kunal takes his time to explain everything from scratch. Also, he constantly reassures that FAANG is not that hard to get it. No other course goes through leetcode in such detail. Kunal's analogies are also better to grasp because he's as young as the students watching this course so his perspective has a fresher take
@immayurpanchal2 жыл бұрын
@Harsh Mathur, Which 4 courses you've done of DSA?