Exercise: Is Circular Linked List

Challenge yourself with an exercise in which you'll have to determine whether a given linked list is circular or not.

We'll cover the following

Problem

In this exercise, you are required to determine whether a given linked list is a circular linked list or not. Your solution should return True or False to indicate if the linked list that was passed in to the method is circular or not.