/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
bool hasCycle(ListNode *head) {
if(head == nullptr)
return false;
ListNode* f = head;
ListNode* s = head;
while(f->next != nullptr && f->next->next != nullptr){
f = f->next->next;
s = s->next;
if(f == s){
return true;
}
}
return false;
}
};