This repository is for beginners who want to contribution in open source Hacktoberfest 2024.This project is designed to promote learning and growth in the field of software development. It offers a range of coding challenges and projects that cover various topics, from basic algorithms to complex application development.
I would be adding the solution to problem 'Detecting cycle in linked list' using tortoise and hair algorithm in C++. It is a very common DSA problem asked in many tech interviews.
example: input=> head = [3 , 2 , 0 , -4] pos = 1
output = true
Explanation: There is a cycle in this linked list where the tail connects to the 1st node (index 1)
Please assign me this issue under the tag of Hactoberfest2024
I would be adding the solution to problem 'Detecting cycle in linked list' using tortoise and hair algorithm in C++. It is a very common DSA problem asked in many tech interviews. example: input=> head = [3 , 2 , 0 , -4] pos = 1 output = true Explanation: There is a cycle in this linked list where the tail connects to the 1st node (index 1)
Please assign me this issue under the tag of Hactoberfest2024