aman247av / Hacktoberfest-Coding-Challenges

This repository is dedicated to solving and sharing coding problems from platforms like CodeForces, LeetCode, GeeksforGeeks, Atcoder and CodeChef, etc. Contribute new coding questions, learn from the community, and boost your problem-solving skills while participating in Hacktoberfest! Welcome to
MIT License
1 stars 22 forks source link

141. Linked List Cycle #17

Closed twinkle485 closed 1 week ago

twinkle485 commented 1 week ago

Problem Statement:

Given head, the head of a linked list, determine if the linked list has a cycle in it.

There is a cycle in a linked list if there is some node in the list that can be reached again by continuously following the next pointer. Internally, pos is used to denote the index of the node that tail's next pointer is connected to. Note that pos is not passed as a parameter.

Return true if there is a cycle in the linked list. Otherwise, return false.

twinkle485 commented 1 week ago

Please assign me this task @aman247av under Hacktoberfest 2024

aman247av commented 1 week ago

Go ahead