#141.Linked List Cycle [LeetCode Grind 75 in Java]
[Problem Link] https://leetcode.com/problems/linked-list-cycle/
public class Solution {
public boolean hasCycle(ListNode head) {
ListNode slow = head;
ListNode fast = head;
while(fast != null && fast.next != null){
slow = slow.next;
fast = fast.next.next;
if(slow == fast) return true;
}
return false;
}
}