easy peasy!! kudh solve karne ki koshish ki par edge cases miss hogaye, T-T test cases pass ho gaye te thank you mik for covering the edge cases as well...
@DevOpskagyaan8 ай бұрын
Thanks as always mik. Your clear voice and way of explanation solves all doubts
@eazy_coding8 ай бұрын
The you explain bhai is just awsm bahut mst jabarjast
@pranavmahendra34238 ай бұрын
Thank you soo much MIK for fantastic explanation
@codestorywithMIK8 ай бұрын
Glad it was helpful! ❤️
@amitshukla22688 ай бұрын
Bhaiya aaj ke GFG POTD Ki Sare approaches ka video bna do please
@codestorywithMIK8 ай бұрын
Hi there, Actually I am travelling and hence a little diffuse to post videos after early morning. Let me try to make it once I get back home. Hope you understand ❤️
@ugcwithaddi8 ай бұрын
I watched some videos on gfg potd but none of them covers the intuition and thought process like you do. Please make a video soon on today’s problem when you get time
@parthbhatti41518 ай бұрын
Longest repeating and non-overlapping substring Bring video on this as well
@sujaydwivedi9397 ай бұрын
Thanks a lot bhaiya
@amankumar-ig2fe8 ай бұрын
Thanks sirji for you provide your important time🥰🥰
@codestorywithMIK8 ай бұрын
Most welcome ❤️🙏
@amankumar-ig2fe8 ай бұрын
🥰
@aruu3468 ай бұрын
bhaiya can you plz make video for understanding constraints according to which we can also understand which ds can be used.and also a video for time space complexity.It is very easier to understand from ur videos.
@codestorywithMIK8 ай бұрын
Definitely. Let me plan that soon next week ❤️🙏
@aruu3468 ай бұрын
@@codestorywithMIK thankyou bhaiya pls do not forget.
@parthbhatti41518 ай бұрын
can you please make video on log like if interviewer asked what is log why we required log in time complexity ? etc.... and solve 1-2 problems and we will learn to find out the log time complexity ?
@ayushshukla13188 ай бұрын
Leetcode may keep going sir
@wearevacationuncoverers8 ай бұрын
Solved it on my own. yayyyy
@kunalpatil.248 ай бұрын
Thank you!
@codestorywithMIK8 ай бұрын
Most welcome 🙏❤️
@KeshavKumar-jl1ub8 ай бұрын
thanks... very nice
@KavyaGupta038 ай бұрын
@codestorywithMIK sir pls can you make video on todays GFG POTD maximum index plsss
@codestorywithMIK8 ай бұрын
Hi there, Actually I am travelling and hence a little diffuse to post videos after early morning. Let me try to make it once I get back home. Hope you understand ❤️
@gauravbanerjee28988 ай бұрын
Thanks a lot bhaiya ❤❤
@swagboltey1028 ай бұрын
Me har problem apki video deke samjke karta hu par own se ni karpaata hu kya ki apki playlist follow Karu ya phir own se hi try karu
@ishaansharma65538 ай бұрын
thankyou bhaiyaaaaa
@souravjoshi22938 ай бұрын
easy the aaa wala 🙂
@realmagnus2308 ай бұрын
Plz bhaiya aja ka gfg potd video solution Bano
@codestorywithMIK8 ай бұрын
Hi there, Actually I am travelling and hence a little diffuse to post videos after early morning. Let me try to make it once I get back home. Hope you understand ❤️
@realmagnus2308 ай бұрын
@@codestorywithMIK thanks Bhai 😍
@parthbhatti41518 ай бұрын
Rabin-Karp Algorithm please build video on this and special the theory part it is hard to understand
@codestorywithMIK8 ай бұрын
Coming this weekend (most probably sunday) My trip will be over by then 😇❤️🙏 Hope you understand
@ugcwithaddi8 ай бұрын
👌🏻👌🏻👌🏻
@infinitygaming71928 ай бұрын
bahiaya geeksforgeeks ke bhe dala kero please
@DeepakSingh-fd2ix8 ай бұрын
sir please upload todays GFG POTD problem i.e RABIN KARP ALGORITHM
@codestorywithMIK8 ай бұрын
Coming this weekend (most probably sunday) My trip will be over by then 😇❤️🙏 Hope you understand
@ru450988 ай бұрын
Is graph concepts playlist complete d?
@codestorywithMIK8 ай бұрын
Yes it’s almost complete. Just few advanced topics are left which I will be covering soon.
@santhosh70428 ай бұрын
For follow up question why can't I use str.substring(I,j+1) for java. Is it still to use dequeue
@codestorywithMIK8 ай бұрын
Yep you can use that too
@santhosh70428 ай бұрын
@@codestorywithMIK your videos keep motivating me and helps to understand(visulaize) the different approaches thank you so much bhaiya. Bro can you please list out greedy approaches like how to come up with solution. I'm having hard time with greedy approaches can't able to think for solution.
@codestorywithMIK8 ай бұрын
Thank you so much for your kind words. Let me soon plan to make a dedicated playlist for Greedy Concepts
@santhosh70428 ай бұрын
@@codestorywithMIK that's great news to hear.
@abhishektripathi39048 ай бұрын
Another approach with same time and space complexity: class Solution { public: int minimumLength(string s) { int n = s.length(); if(n == 1) return 1; int i = 0, j = n-1; int ans = 0; while(i
@tutuimam33818 ай бұрын
❤❤❤❤❤❤
@sakshamshrivastava34828 ай бұрын
timeompleity O(n^2) nhi ghogi kya 2 while loop
@codestorywithMIK8 ай бұрын
The time complexity of the provided code is O(n) because it uses two pointers, 'i' and 'j', to iterate through the string 's'. The while loop conditions ensure that the pointers move towards the center of the string as long as the characters at those positions are equal. In the worst case, each character in the string is visited once, leading to a linear time complexity of O(n), where 'n' is the length of the input string.
@kashifhussain18728 ай бұрын
Hey, I know that you have posted dsa sheet. But I request you to post a sheet which contains only the problems you have posted their solutions. Which can be completed in 3 - 4 months. I request you to do it because I have become addicted to your videos. I am not preferring to see other you tube channel other than your channel
@codestorywithMIK8 ай бұрын
Hi there, This seems a good idea. As I am travelling now, let me start on this when I get back by end of this week
@coderletscode8 ай бұрын
Bhai you travel a lot can you give us reason of your travelling for our patient 😅
hey can anyone please tell me the problem with this code int minimumLength(string s) { int n=s.size(); int i=0; int j=n-1; char previ='#'; char prevj='#'; while(i