Hey sis..your explanation is really awesome.. it made me feel the Leetcode prblms easy..but now am Missing your videos for the past 5 days.. pls comeback soon 😢
@komalvhanmane21983 ай бұрын
Yes
@verity_0983 ай бұрын
You are an inspiration.
@chilakalahithesh22593 ай бұрын
good
@chilakalahithesh22593 ай бұрын
Good
@chilakalahithesh22593 ай бұрын
Good
@chilakalahithesh22593 ай бұрын
good
@asgarantony3 ай бұрын
yesterday i was actually waiting for you video, but you haven't uploaded it.
@komalvhanmane21983 ай бұрын
Will try to upload daily .
@chilakalahithesh22593 ай бұрын
good
@amulkatta99573 ай бұрын
your the best 🥳
@asgarantony3 ай бұрын
thanks for the amazing video, learned something new today,
@Amit_rajput_10243 ай бұрын
keep it up Komal. it is very useful for beginner's
@chilakalahithesh22593 ай бұрын
good
@kthamim75523 ай бұрын
Yesterday challenge is bit confusing mam
@chilakalahithesh22593 ай бұрын
Good
@amulkatta99573 ай бұрын
latest problems videos why dont you upload?
@komalvhanmane21983 ай бұрын
uploaded the latest video, you can check..
@chilakalahithesh22594 ай бұрын
good ..keep going
@nabojyotinath64624 ай бұрын
Can we help me to improve my English in web development interview
@Biradar_Ganesh4 ай бұрын
may i please know, where you are picking the question from? i mean is it from any DSA sheet?
@komalvhanmane21984 ай бұрын
I am solving POTD
@JaganMA-x5n4 ай бұрын
🙌🙏
@MegaSethi4 ай бұрын
Challenge madam challange nahi
@komalvhanmane21984 ай бұрын
Thanks for letting me know.
@lakithakare73874 ай бұрын
Good video. Thanks
@arunmohapatra28064 ай бұрын
👍
@AyushHuYrr4 ай бұрын
Hey komal, I have a question for you Have you learned web development before java ? And what would you suggest between MERN stack and Spring boot to a junior starting from 0.
@komalvhanmane21984 ай бұрын
Initially I did the basics of web-d like html css and js but for end to end development I chose java as backend language and before spring boot i did project in servlet-jsp to understand the basic concepts how actually it works(MVC pattern)(request response) then moved to springboot and frontend framework (Angular).
@snapkac73654 ай бұрын
great
@nobody124...4 ай бұрын
how do u approach hard problem. i struggle to solve . give some suggestions
@gkfacts8184 ай бұрын
Thanks for the logic and nice explanation among the video's which I watched so far for this problem. Keep it up
@komalvhanmane21984 ай бұрын
Glad it helped
@Interesting_facts_with_Pallavi4 ай бұрын
nice explanation
@wrestlingshorts4 ай бұрын
nice approach 🍉🍉🍉🍉
@dayashankarlakhotia49434 ай бұрын
Good explanation 👏 👍
@komalvhanmane21984 ай бұрын
Glad it was helpful!
@SantoshKumarMandal-f1l4 ай бұрын
If you want to be a KZbin tutor, you should solve all these DSA problems using the minimum time complexity so that students start to follow your videos
@komalvhanmane21984 ай бұрын
Ok , Thanks for the feedback 😃. Will work on it.
@sanjananikam10164 ай бұрын
Really helpful for beginners. Thank you for making this video ❤.
@RASIUT4 ай бұрын
we were asked to reverse actually no doubt we can do it without reversing but if we want to reverse then we can use class Solution { public static void swap(int[] arr, int i, int j) { int temp = arr[i]; arr[i] = arr[j]; arr[j] = temp; } public boolean canBeEqual(int[] target, int[] arr) { int n = target.length; for(int i=0;i<n;i++) { if(target[i] != arr[i]) { int j = i+1; while(j<n && target[i] != arr[j]) { j++; } if(j==n) return false; swap(arr, i, j); i++; j--; } } return true; } }
@komalvhanmane21984 ай бұрын
Yes
@shiv_16104 ай бұрын
Thank you ❤
@madhurgupta95754 ай бұрын
Hi Komal, is this gonna be full Spring Boot Course. If yes, I'm really thankful to you because I will then follow your playlist with no time and learn spring boot
@komalvhanmane21984 ай бұрын
Yes
@kriteinmaras88574 ай бұрын
Really useful. keep rocking !!
@a-65-chetanvhanmane154 ай бұрын
Thanks for making such a knowlageble video
@_PRANAYMATE4 ай бұрын
Thanks tai understood 😇
@adityarajsah4144 ай бұрын
Helpful video, try to upload daily it will be helpful for many students...
@komalvhanmane21984 ай бұрын
@@adityarajsah414 Yes ✨
@Motivation2u_14 ай бұрын
Good explaination....🎉
@komalvhanmane21984 ай бұрын
Thank you 😃
@Motivation2u_14 ай бұрын
@@komalvhanmane2198 Are you a student Or a Working professional???
@komalvhanmane21984 ай бұрын
@@Motivation2u_1you can check my LinkedIn profile.
@nageshcreations24124 ай бұрын
Very nice Komal.. I cant beleive little kid Komal is giving such a brilliant lecture like this.. really I am proud of you.. best wishes from all from Vinchur village... Keep it up 👍👍👍👍👍
@komalvhanmane21984 ай бұрын
Thank you so much 🙏
@punyabikash36244 ай бұрын
Awesome 👌
@Hemantgarg-c4g4 ай бұрын
Great! Can you create a complete spring boot playlist?
@komalvhanmane21984 ай бұрын
@@Hemantgarg-c4g Yes
@djsurya__47757 ай бұрын
What are the Dependencies used in this application ?