Excellent explanation ❤️. I wrote the code in just one go without seeing the actual code.
@anshror25838 ай бұрын
brother is some teacher and have great explaination skills wow
@nawazthezaifre88708 ай бұрын
I was able to think the approach but the confusing point for me that how can I shift one pointer to a and another pointer to the bth location. But after seeing your video everything is cleared. Thanks for helping out.
Bhaiya GFG POTD ke hard questions ki video banado. They are genuinely good questions, and are frequently asked in OAs
@anuppatankar42948 ай бұрын
+1
@codestorywithMIK8 ай бұрын
Hi guys, I will try but actually i get very less time because of my other work schedules. Will try soon to cover GFG too
@chakrabarti96348 ай бұрын
@@codestorywithMIK Sir apke channel ka name suna hai lekin as a beginner pata nhi hai kaise is channel ko follow karu thoda sa bata dijiye konse sequence mai playlist ya videos dekhe please.dhonoyobad❤
@codestorywithMIK8 ай бұрын
If you are a beginner, You can start with Arrays first. Then go with stacks, LinkedList, Strings, Recursion, Backtracking , DP, Tree, Trie, Graph Go from easy to tough topics. And watch this on how to cover each topic - kzbin.info/www/bejne/aHvWmZmlnJZ4isksi=7LlNFweK43xiROwP
@darkstudio31708 ай бұрын
Number of Ways to Wear Different Hats to Each Other. Leetcode 1434 . Please create a video on this .Thanks
@tutuimam33818 ай бұрын
Thanks ❤❤❤❤❤❤
@pushpendrasingh34708 ай бұрын
Bhaiya leetcode ke contest aur leetcode enough hai ya codeforces bhi krna padega online assesment ke liye??
@sauravchandra108 ай бұрын
Python code: class Solution: def mergeInBetween(self, list1: ListNode, a: int, b: int, list2: ListNode) -> ListNode: cur = list1 prev = None for i in range(b+1): if i == a - 1: prev = cur cur = cur.next prev.next = list2 while list2.next: list2 = list2.next list2.next = cur return list1
@udaysingh29298 ай бұрын
just solved this question😃😃
@vivek32478 ай бұрын
sir STL concepts playlist start plz
@DevOpskagyaan8 ай бұрын
Done 👍🏻
@chakrabarti96348 ай бұрын
Sir apke channel ka name suna hai lekin as a beginner pata nhi hai kaise is channel ko follow karu thoda sa bata dijiye konse playlist se kare kaise please please.dhonoyobad❤
@Ankitkumar-fz3kc8 ай бұрын
Sir publishe LC potd video daily also you can watch playlist for any particular topic.
@techyou61638 ай бұрын
Kal ka potd ka dusra approach bhi upload kardo na waiting.....
@shraban85088 ай бұрын
sir greedy approach ka video upload kardo task scheduler problem ka
@8daudio6728 ай бұрын
bhaiya aaj ka GFG PoTD please
@oqant04248 ай бұрын
i just wrote a beautiful story for the question and guess what ?? I did the question on my own🤯 Thanks MIK ❤ for your story -> code method Came here to learn something POTD DONE [20.3.24]✅✅
@oqant04248 ай бұрын
class Solution { public: ListNode* mergeInBetween(ListNode* list1, int a, int b, ListNode* list2) { /* story:- -> find a ✅ ->find prev of a✅ ->find b✅ ->find tail of 2nd list (tail2) ✅ -> prev->next=head2✅ ->tail2->next=b->next✅ ->b->next=NULL✅ ->return head1;✅ */ // step 1,2,3 of story ListNode* tempA=list1; //a ListNode* prev=list1; //prev ListNode* tempB=list1; //b while(a--){ prev=tempA; tempA=tempA->next; } while(b--){ tempB=tempB->next; } // 4th point of story ListNode* tail2=list2; while(tail2->next){ tail2=tail2->next; } // step 5,6,7,8 of story prev->next=list2; tail2->next=tempB->next; tempB->next=NULL; return list1; } };
@dhairyachauhan66228 ай бұрын
Hi bhaiya, My internship starts from 10am-7pm. I am only able to solve 2-3 questions a day coz of it.Any solution?
@harshtiwari4168 ай бұрын
Bhai internship ka thoda baaato kaise apply kana hai, resume
@dhairyachauhan66228 ай бұрын
@@harshtiwari416 Make sure to build projects along with DSA. Company Now look at your projects too. My 50% interview was DSA and the rest 50% was about projects and git. I cracked 2 companies coz of it which no one did in my college.
@Sahilsharma-sk5vr8 ай бұрын
how many projects ( full stack) should be in the resume for placements. Share some insight your experience