pass 141 easy

This commit is contained in:
2024-05-25 12:01:35 +02:00
parent 9e8f43d107
commit 301d70cf8c
2 changed files with 63 additions and 0 deletions

21
141-240525-pass/main.py Normal file
View File

@@ -0,0 +1,21 @@
# Definition for singly-linked list.
class ListNode:
def __init__(self, x):
self.val = x
self.next = None
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, x):
# self.val = x
# self.next = None
class Solution:
def hasCycle(self, head: Optional[ListNode]) -> bool:
cnt = 0
if head == None: return False
while cnt < 1e4+10:
if head.next == None:
return False
head = head.next
cnt += 1
return True