Given the beginning of a linked list head, return true if there is a cycle in the linked list. Otherwise, return false.
There is a cycle in a linked list if at least one node in the list can be visited again by following the next pointer.
Internally, index determines the index of the beginning of the cycle, if it exists. The tail node of the list will set it's next pointer to the index-th node. If index = -1, then the tail node points to null and no cycle exists.
Note: index is not given to you as a parameter.
Example 1:
Input: head = [1,2,3,4], index = 1
Output: trueExplanation: There is a cycle in the linked list, where the tail connects to the 1st node (0-indexed).
Example 2:
Input: head = [1,2], index = -1
Output: falseConstraints:
1 <= Length of the list <= 1000-1000 <= Node.val <= 1000index is -1 or a valid index in the linked list.# Definition for singly-linked list.
# class ListNode:
# def __init__(self, val=0, next=None):
# self.val = val
# self.next = next
class Solution:
def hasCycle(self, head: Optional[ListNode]) -> bool:
has_cycle = False
if not head:
return has_cycle
visited = set()
node = head
while node.next:
if node.next.__hash__() in visited:
has_cycle = True
break
else:
visited.add(node.next.__hash__())
node = node.next
return has_cycle