Problem Statment
Given a singly linked list, find if the linked list is circular or not. A linked list is called circular if it not NULL terminated and all nodes are connected in the form of a cycle. An empty linked list is considered as circular.
Example 1:
Input
2
5 1
1 2 3 4 5
6 0
2 4 6 7 5 1
Output:
1
0