mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-10 00:09:06 +01:00
22 lines
402 B
Java
22 lines
402 B
Java
|
/**
|
||
|
* Definition for singly-linked list. class ListNode { int val; ListNode next; ListNode(int x) { val
|
||
|
* = x; next = null; } }
|
||
|
*/
|
||
|
public class Solution {
|
||
|
public boolean hasCycle(ListNode head) {
|
||
|
var x = head;
|
||
|
var y = head;
|
||
|
|
||
|
while (y != null && y.next != null) {
|
||
|
x = x.next;
|
||
|
y = y.next.next;
|
||
|
|
||
|
if (x == y) {
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return false;
|
||
|
}
|
||
|
}
|