Skip to content

Latest commit

 

History

History
30 lines (27 loc) · 678 Bytes

File metadata and controls

30 lines (27 loc) · 678 Bytes

Lamarck      

0141 环形链表


01 快慢指针 o(n)

# Definition for singly-linked list.
# class ListNode(object):
#     def __init__(self, x):
#         self.val = x
#         self.next = None

class Solution(object):
    def hasCycle(self, head):
        """
        :type head: ListNode
        :rtype: bool
        """
        if not head or not head.next:
            return False
        fast = head
        slow = head
        while fast and fast.next:
            fast = fast.next.next
            slow = slow.next
            if fast == slow:
                return True
        return False