LeetCode 141: Linked List Cycle - Interview Prep Ep 64

  Рет қаралды 11,213

Fisher Coder

Fisher Coder

Күн бұрын

Пікірлер: 55
@MiddleEasternInAmerica
@MiddleEasternInAmerica 4 жыл бұрын
thank you so much fisher coder, PLEASE don't stop making videos, at least until I get a job :) :)
@MiddleEasternInAmerica
@MiddleEasternInAmerica 4 жыл бұрын
can't wait to see your explanation for (24. Swap Nodes in Pairs : leetcode.com/problems/swap-nodes-in-pairs/)
@pil39
@pil39 4 жыл бұрын
Thank You for the explanation through each iteration! This is indeed a quality video explanation and gave me a lot of clarity.
@FisherCoder
@FisherCoder 4 жыл бұрын
Glad it was helpful!
@rhuzaifa
@rhuzaifa Жыл бұрын
Nice explaination, Thank you.
@FisherCoder
@FisherCoder Жыл бұрын
You are welcome!
@seifmamdouh5193
@seifmamdouh5193 2 жыл бұрын
Great Explanation!
@FisherCoder
@FisherCoder 2 жыл бұрын
Glad you think so!
@ozas5922
@ozas5922 Жыл бұрын
perfect explanation
@FisherCoder
@FisherCoder Жыл бұрын
Glad it was helpful!
@melanieprevot4926
@melanieprevot4926 Жыл бұрын
Super clear !! Thanks
@FisherCoder
@FisherCoder Жыл бұрын
Great to hear! Many thanks!
@inchworm9311
@inchworm9311 2 жыл бұрын
You are a great teacher. Thank you
@FisherCoder
@FisherCoder 2 жыл бұрын
Thank you! 😃
@henrywang2516
@henrywang2516 2 жыл бұрын
It's helpful fo me. Thank you for sharing.
@FisherCoder
@FisherCoder 2 жыл бұрын
Glad it was helpful!
@miadinh6381
@miadinh6381 2 жыл бұрын
the pictures were very helpful.
@FisherCoder
@FisherCoder 2 жыл бұрын
Glad you like them!
@BlazedOutTurtle
@BlazedOutTurtle 3 жыл бұрын
Bravo ! best explanation on KZbin
@FisherCoder
@FisherCoder 3 жыл бұрын
Glad it was helpful!
@MANIDEEP08
@MANIDEEP08 3 жыл бұрын
Superb explanation, Thanks!
@FisherCoder
@FisherCoder 3 жыл бұрын
Glad it was helpful!
@victory4627
@victory4627 2 жыл бұрын
Very nice and clear explanation!! :D
@FisherCoder
@FisherCoder 2 жыл бұрын
Glad you liked it!
@rishabhrai9472
@rishabhrai9472 4 жыл бұрын
Absolute clarity man! Thanks for the explanation
@FisherCoder
@FisherCoder 4 жыл бұрын
You bet!
@bhavyashah1775
@bhavyashah1775 4 жыл бұрын
Awesome solution!! Easy Explanation.
@nirajpatil1395
@nirajpatil1395 2 жыл бұрын
thank you for explaining it really helpful
@FisherCoder
@FisherCoder 2 жыл бұрын
Glad it was helpful!
@alexandrunknown1456
@alexandrunknown1456 4 жыл бұрын
your explanation was a best one !
@FisherCoder
@FisherCoder 4 жыл бұрын
Glad you liked it
@ehsanhosseini5861
@ehsanhosseini5861 4 жыл бұрын
As usual great explanation. Love your videos.
@FisherCoder
@FisherCoder 4 жыл бұрын
Thank you!
@alekseiwe
@alekseiwe 3 жыл бұрын
The best explanation! Thank you dude:)
@FisherCoder
@FisherCoder 3 жыл бұрын
Glad it helped!
@alekseiwe
@alekseiwe 3 жыл бұрын
@@FisherCoder yes, I understand how it works after you explanations👍🏻
@HariHaran-sl1pg
@HariHaran-sl1pg 2 жыл бұрын
You voice is sweet..Keep going my frd..
@meerimmoldali416
@meerimmoldali416 2 жыл бұрын
thanks so much
@tenmadoc4622
@tenmadoc4622 3 жыл бұрын
Really taught well sir Thankyou !!
@FisherCoder
@FisherCoder 3 жыл бұрын
Most welcome!
@lilyjoy1338
@lilyjoy1338 3 жыл бұрын
You are the best teacher in the World...❤️ Plzz keep posting videos and blessing us with ur knowledge
@FisherCoder
@FisherCoder 3 жыл бұрын
Thanks a ton!
@merxgrc9940
@merxgrc9940 2 жыл бұрын
thanks dood keep making these good shit
@Dstoic
@Dstoic 4 ай бұрын
perfect
@louischou6780
@louischou6780 3 жыл бұрын
Why do we need to check fast != null in the while loop condition? Don't we just need to check if the fast.next != null to ensure the fast node has already arrived at the end of the list?
@abhinavsharma3819
@abhinavsharma3819 3 жыл бұрын
O thanks, u cleared my doubt, I think we need to check both fast.next and fast.next.next because maybe the list is not cyclic and it can give an error
@PankajYadav-nz4gn
@PankajYadav-nz4gn 2 жыл бұрын
Hey Fisher! Thanks for explaining the code,but I have one doubt and that is what about returning the position of the node where cycle is found. You are not returning the position of the node where the cycle exists.
@abhinavsharma3819
@abhinavsharma3819 3 жыл бұрын
Suppose the fast node is at second last position i.e. n-2 , and next of last node is none instead of a cycle, wouldn't fast.next.next would give error since since there is no next to the none ?
@tushitapatel5782
@tushitapatel5782 3 жыл бұрын
how do we know that the slow pointer won't got on another cycle? what is the guarantee that the fast will catch on during slow pointer's first cycle?
@aba0101
@aba0101 3 жыл бұрын
Hi Steve, your video is greatly helpful! But here in this problem, I'm wondering if we need to check the special circumstance first? Let's say, if(head == null) return false.
@richmondmensah4408
@richmondmensah4408 4 жыл бұрын
Could you also do Linked List Cycle II
@jenniferou
@jenniferou 3 жыл бұрын
how are computer science people so clever 😱
@yufanma2942
@yufanma2942 4 жыл бұрын
可以问下学长在哪里工作嘛
@murike
@murike 3 жыл бұрын
Ok, but how do you prove matematically that your pointers will meet eventually and not move in infinite loop? Going through one example is not convincing
@SHASHANKRUSTAGII
@SHASHANKRUSTAGII 3 жыл бұрын
Not liking as Number of likes = 123 That seems a perfect number.
كم بصير عمركم عام ٢٠٢٥😍 #shorts #hasanandnour
00:27
hasan and nour shorts
Рет қаралды 12 МЛН
Lazy days…
00:24
Anwar Jibawi
Рет қаралды 8 МЛН
LeetCode 70. Climbing Stairs - Interview Prep Ep 72
12:08
Fisher Coder
Рет қаралды 9 М.
LeetCode 234: Palindrome Linked List - Interview Prep Ep 63
7:39
Fisher Coder
Рет қаралды 14 М.
LeetCode 283: Move Zeroes - Interview Prep Ep 53
13:00
Fisher Coder
Рет қаралды 5 М.
LeetCode 104. Maximum Depth of Binary Tree - Interview Prep Ep 65
14:20
Top 7 Algorithms for Coding Interviews Explained SIMPLY
21:22
Codebagel
Рет қаралды 448 М.