本文主要是介绍Python | Leetcode Python题解之第142题环形链表II,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
题目:
题解:
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, x):
# self.val = x
# self.next = Noneclass Solution(object):def detectCycle(self, head):""":type head: ListNode:rtype: ListNode"""a=headi=0dic={}while a:if a in dic:return adic[a]=ii+=1a=a.nextreturn None
这篇关于Python | Leetcode Python题解之第142题环形链表II的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!