Rotate List | Leetcode 61 | Linked List | Day-11

  Рет қаралды 5,650

Ayushi Sharma

Ayushi Sharma

Күн бұрын

Пікірлер: 48
@vardhamanmodi3615
@vardhamanmodi3615 Жыл бұрын
Amazing explanation. Thank you very much Ayushi Sharma Ji.
@AyushiSharmaDSA
@AyushiSharmaDSA Жыл бұрын
Welcome Vardhaman :)
@codemachine7381
@codemachine7381 2 жыл бұрын
By learning through ur channel, I've cleared Adobe internship. Thanks a lot diiii❤❤
@AyushiSharmaDSA
@AyushiSharmaDSA 2 жыл бұрын
Congratulations 🥳 Happy for you 🧡🧡
@asmitswarnakar7551
@asmitswarnakar7551 Жыл бұрын
Thanks di , bohot koshis k baad bhi nehi ho raha tha , thank you so much ❤
@AyushiSharmaDSA
@AyushiSharmaDSA 8 ай бұрын
welcome, glad it was helpful :)
@karanjitsinghrandhawa445
@karanjitsinghrandhawa445 2 жыл бұрын
Helpful Keep going Aap bohot acha kar rhe ho sach mein Bhagwan ji aapko duniya ki saari khushiyan de in the coming months
@AyushiSharmaDSA
@AyushiSharmaDSA 2 жыл бұрын
Thank you so much Karanjit :) Means a lot
@shreyasnaphad3284
@shreyasnaphad3284 2 жыл бұрын
Amazing explanation as always! Fortunately found out about this channel a few days ago. I will be watching every video along with new ones. Tremendous!
@AyushiSharmaDSA
@AyushiSharmaDSA 2 жыл бұрын
Thank you so much Shreyas, 🥺😊
@FindARandom
@FindARandom 2 жыл бұрын
@@AyushiSharmaDSA that's great sister i love your explanation ofcourse DNA matters (brahman)
@akb3689
@akb3689 2 жыл бұрын
Keep going 🔥🔥🔥 I hope this will help me for my placements
@AyushiSharmaDSA
@AyushiSharmaDSA 2 жыл бұрын
Thanks Amit :)
@amitsinha806
@amitsinha806 2 жыл бұрын
I am appreciate your work .👍👍👍👍👍
@AyushiSharmaDSA
@AyushiSharmaDSA 2 жыл бұрын
Thank you so much Amit :)
@amitsinha806
@amitsinha806 2 жыл бұрын
@@AyushiSharmaDSA Are you doing job at Walmart??
@ashishverma4822
@ashishverma4822 2 жыл бұрын
Thank you so much didi.... finally smjh aa gaya
@AyushiSharmaDSA
@AyushiSharmaDSA 2 жыл бұрын
Wlcm Ashish, glad it was helpful 🤗
@vatsalkudecha2746
@vatsalkudecha2746 2 жыл бұрын
Really! Worth waiting for this video...Thank you.
@AyushiSharmaDSA
@AyushiSharmaDSA 2 жыл бұрын
Welcome Vatsal :) Glad it was helpful
@manojgmanojg9600
@manojgmanojg9600 2 жыл бұрын
Amazing Explanation.
@AyushiSharmaDSA
@AyushiSharmaDSA 2 жыл бұрын
Thanks Manoj 🤗
@vinay2957
@vinay2957 8 ай бұрын
amazing content
@AyushiSharmaDSA
@AyushiSharmaDSA 8 ай бұрын
thank you vinay :)
@ChandraShekhar-by3cd
@ChandraShekhar-by3cd 2 жыл бұрын
First Like, First comment .😊😊
@AyushiSharmaDSA
@AyushiSharmaDSA 2 жыл бұрын
🙌🏻🙌🏻😊😊
@ChandraShekhar-by3cd
@ChandraShekhar-by3cd 2 жыл бұрын
@@AyushiSharmaDSA 😊😊
@mohit8299
@mohit8299 2 жыл бұрын
Liking video before watching 💥
@AyushiSharmaDSA
@AyushiSharmaDSA 2 жыл бұрын
Thanks Mohit :)
@rajdave7357
@rajdave7357 2 жыл бұрын
Thanks a lot for this explanation
@AyushiSharmaDSA
@AyushiSharmaDSA 2 жыл бұрын
Welcome Raj, glad it was helpful :)
@decadewgame9802
@decadewgame9802 2 жыл бұрын
Hey can you tell me which software are you using for drawing and explanation?
@AyushiSharmaDSA
@AyushiSharmaDSA 2 жыл бұрын
Microsoft whiteboard for drawing, obs studio for screen recording, filmora for editing
@vanisai2299
@vanisai2299 2 жыл бұрын
Di can u pls explain the for loop like for(auto i=0;i2->3->4->5->NULL
@AyushiSharmaDSA
@AyushiSharmaDSA 2 жыл бұрын
Hi Vani, Lets take linkedlist 1->2->3->4->5, so here len = 5 and lets say k = 2 then after first while loop, tail will be at 5. and 5->next we will change to 1, so 5->next = 1 then comes the for loop, so it will run 3 times, i = 0, 1, 2 as(i < (len-k) -> i < 3) so, in first iteration, i=0, tail will move from 5 and will come to 1, in second iteration, i=1, tail will move from 1 and will come to 2, in third iteration, i=2, tail will move from 2 and will come to 3, I hope its clear :)
@Star_Bawa9
@Star_Bawa9 2 жыл бұрын
Are you a final year student 😀?
@AyushiSharmaDSA
@AyushiSharmaDSA 2 жыл бұрын
No, I am working professional
@sadashivshinde9150
@sadashivshinde9150 2 жыл бұрын
why is len=1
@AyushiSharmaDSA
@AyushiSharmaDSA 2 жыл бұрын
as we are starting from head, so one node is already there :)
@sadashivshinde9150
@sadashivshinde9150 2 жыл бұрын
@@AyushiSharmaDSA but list can be empty right?
@AyushiSharmaDSA
@AyushiSharmaDSA 2 жыл бұрын
@@sadashivshinde9150 yes that we are checking in starting, if head is null
@sadashivshinde9150
@sadashivshinde9150 2 жыл бұрын
@@AyushiSharmaDSA ohh missed that Thanks
@spardha-yug
@spardha-yug 2 жыл бұрын
This video is not up to the mark. Here we can clearly see, you are lacking knowledge (as far as this problem is concerned). However, your other videos are unbeatable. As the member of your channel I will be pointing out any flaws I found . Please take it constructively to get better to best. Thanks a ton.
@shivamnegi7552
@shivamnegi7552 2 жыл бұрын
kal video kyu ni ayi :( wait krte rehgye :(
@AyushiSharmaDSA
@AyushiSharmaDSA 2 жыл бұрын
Hi Shivam, sorry, but kal ki problem pe pehle video bnayi hui thi, 🙂
@AyushiSharmaDSA
@AyushiSharmaDSA 2 жыл бұрын
Isiliye dubara nhi bnayi
@shivamnegi7552
@shivamnegi7552 2 жыл бұрын
@@AyushiSharmaDSAye batana chahiye tha na :( iske liye yt shorts nikal dete :) engagement bhi badh jata .. huehue #hacks
@AyushiSharmaDSA
@AyushiSharmaDSA 2 жыл бұрын
@@shivamnegi7552 acha😅
Copy List with Random Pointer | Leetcode 138 | Linked List | Day-12
29:49
LeetCode was HARD until I Learned these 15 Patterns
13:00
Ashish Pratap Singh
Рет қаралды 777 М.
It’s all not real
00:15
V.A. show / Магика
Рет қаралды 20 МЛН
Beat Ronaldo, Win $1,000,000
22:45
MrBeast
Рет қаралды 158 МЛН
Мен атып көрмегенмін ! | Qalam | 5 серия
25:41
It works #beatbox #tiktok
00:34
BeatboxJCOP
Рет қаралды 41 МЛН
Introduction to Linked Lists (Data Structures & Algorithms #5)
18:47
one year of studying (it was a mistake)
12:51
Jeffrey Codes
Рет қаралды 279 М.
AI Is Making You An Illiterate Programmer
27:22
ThePrimeTime
Рет қаралды 129 М.
Big-O Notation - For Coding Interviews
20:38
NeetCode
Рет қаралды 560 М.
It’s all not real
00:15
V.A. show / Магика
Рет қаралды 20 МЛН