Literally Best ever content and motivation for solving problems because at the end your hand should know how to code it and your mind should see how to approach it (like you say chamakna jaruri hai ) Patterns Recognising is very very important. Hats off to you :)😇
Hey brother, I'm an QA automation Engineer in a Service Based Organization , And I don't have much knowledge on development tools and Technologies, But I love to coding and solving problems, So i want to get into a Product Based Company , What should be my approach? Can you please tell me that whether I should learn some Development related Tools and techologies or only focus on DSA?
try to more focus on DSA and some little little times in Development Okay trust me and just start from my Playlist one by one 1. Hashing 2. Tree 3. Graph 4. Stack and Queue 5. Heap Do whatever I said in the video and follow every instruction strictly. Each of my videos is based on one Question just try and learn from my videos and after completion of each Data structure just ping me over LinkedIn or TH-cam comment section and jo v videos dekhte ho, put comments on that video so that I can also track your progress
Bhaiya main ek naive approach lagaya tha but jaise 10 se multiply karne ki wjah se yeh Runtime error de diya toh signed integer overflow ho gya. bool isPalindrome(ListNode* head) { if(head==NULL || head->next==NULL){ return true; } ListNode* temp = head; int n = 0; while(temp!=NULL){ n = n*10+temp->val; temp = temp->next; } int a = n; int b =0; while(n>0){ int remainder = n%10; b=b*10+remainder; n=n/10; } if(a==b){ return true; } else{ return false; } }
Literally Best ever content and motivation for solving problems because at the end your hand should know how to code it and your mind should see how to approach it (like you say chamakna jaruri hai ) Patterns Recognising is very very important. Hats off to you :)😇
I was thinking to give up..then I came across this channel....thanks a lot bhai.lots of love :)
Most welcome 😊
Literally bhaiya you explain very nicely💕
*Bhai you are really underrated but your content is great and awesome* 😎😁💙
Thank you so much 😀
You make everything look easy.. i like your content. Thank you so much❤
Tbh ,I started to feel confident about Linked list concepts. 😍
Bhaiya aapka wala naive approach toh bada pyara approach tha
Hahahahah
you are the best..........masum
Thanks Bro. Amazing Explanation😃
what about the link part of the last node of first half of the list (in case of odd elements), where it will be pointing ?
Temp barabar Head ..only bihari can feel this❤
Thank you brother❤
your welcome dude
Sir projects pe video layie in java...
It would be helpful
Bhyya array and strings ka playlist daldo acche se
Great video
thanks
bhaiya you are doing great job
Thanks Please, share this channel in your college, groups, or LinkedIn bcoz it's cost nothing to you 😀
Done in 5 min using vectors, but in o(1)............ ; )
Great Vid!
Please, share this channel in your college, groups, or LinkedIn bcoz it's cost nothing to you 😀
This was asked in my Nvidia interview.
oooo waooooo
Very well explained brother ..keep up with your good job🫂
Thank you so much 😀
mention time comlexity also.
O(n)
sir naive approach me for loop me i++ aayega na
check this by applying i++ and try to run
i++hi aana chahiye
Hey brother, I'm an QA automation Engineer in a Service Based Organization , And I don't have much knowledge on development tools and Technologies, But I love to coding and solving problems, So i want to get into a Product Based Company , What should be my approach? Can you please tell me that whether I should learn some Development related Tools and techologies or only focus on DSA?
try to more focus on DSA and some little little times in Development
Okay trust me and just start from my Playlist one by one
1. Hashing
2. Tree
3. Graph
4. Stack and Queue
5. Heap
Do whatever I said in the video and follow every instruction strictly.
Each of my videos is based on one Question just try and learn from my videos and after completion of each Data structure just ping me over LinkedIn or TH-cam comment section
and jo v videos dekhte ho, put comments on that video so that I can also track your progress
Nice vid :)
amazing
Hare Algorithm name of slow and fast pointer in Linked list 💪
oooo
bhaiya hmko na reverse wale part me problem hota he kie thik kre usko
yaar, bass practice and practice
Bhaiya main ek naive approach lagaya tha but jaise 10 se multiply karne ki wjah se yeh Runtime error de diya
toh signed integer overflow ho gya.
bool isPalindrome(ListNode* head) {
if(head==NULL || head->next==NULL){
return true;
}
ListNode* temp = head;
int n = 0;
while(temp!=NULL){
n = n*10+temp->val;
temp = temp->next;
}
int a = n;
int b =0;
while(n>0){
int remainder = n%10;
b=b*10+remainder;
n=n/10;
}
if(a==b){
return true;
}
else{
return false;
}
}
yess its possible