public boolean hasCycle(ListNode head){
if (head == null) return false;
ListNode fast = head;
ListNode slow = head;
while (fast != null && fast.next != null){
fast = fast.next.next;
slow = slow.next;
if (fast == slow){
return true;
}
}
return false;
}
12-02
372

10-08
418

07-26
368
