1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-20 01:56:57 +02:00
LeetCode/java/linked-list-cycle.java

22 lines
402 B
Java
Raw Normal View History

/**
* 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;
}
}