DSA Day 69/100
Topic: Linked List
Questions Successfully Completed: 1
1) Check if it is a circular Linked ListEasy
QuestionInput: LinkedList: 1->2->3->4->5 (the first and last node is connected, i.e. 5 --> 1) Output: 1
class GfG
{
boolean isCircular(Node head...
preetikaprakash.hashnode.dev1 min read