Skip to content

Commit becaa32

Browse files
committed
fix
1 parent 3915d4c commit becaa32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

leetcode_solved/leetcode_0142_Linked_List_Cycle_II.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Memory Usage: 38.9 MB, less than 81.24% of Java online submissions for Linked List Cycle II.
44
*
55
* 思路:快慢指针法。 细节的是需要证明当快慢两指针相遇时,慢指针再走一倍已走过的路程,最终会停在环处。
6-
* 复杂度:T:O(n), S:O(s)
6+
* 复杂度:T:O(n), S:O(1)
77
*/
88
/**
99
* Definition for singly-linked list.

0 commit comments

Comments
 (0)