mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-02-10 05:47:03 +00:00
[FEATURE] Adding Cycle detection in linked list code #63
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @garimamangal19 on GitHub (Oct 24, 2020).
Detailed Description
Context
Possible Implementation
@Panquesito7 commented on GitHub (Oct 26, 2020):
Please describe as much as possible about this algorithm. Thank you.
@bhavdeep009 commented on GitHub (Feb 7, 2021):
are you looking for the code which detects cycle in link list?
@Panquesito7 commented on GitHub (Feb 8, 2021):
You haven't filled the template: it doesn't have description (not even detailed), context or possible implementation.
Please fill the template how does this algorithm work (or at least a description), context and possible implementation.
Thank you.
@ankitakul commented on GitHub (Feb 12, 2021):
Hello, is this issue still open? I have a project for a software methodology class to contribute to an open source repo and I would like to work on this project. Could I be assigned to this issue?
Possible implementation: I was thinking of using 2 pointers, slow and fast. Slow pointer will move one step forward and fast pointer will move 2 steps forward. If they are pointing to same node, we know its a loop. If the fast reaches the null/end, it has no loop.
@Panquesito7 commented on GitHub (Feb 13, 2021):
Thank you for your interest in contributing. 👍
Before submitting a PR, please ensure the following:
@ankitakul commented on GitHub (Mar 17, 2021):
Hello, My code is ready. I made sure its not duplicate and according to standards. I am new to github and I am having issues pushing the code. It is saying invalid username and password , authentication failed for github/TheAlgorithms/C.git.
Is it because I am not assigned the issues? Can you please assign it to me.
@ayaankhan98 commented on GitHub (Mar 17, 2021):
No it has no relation with issue assignment. It is because of your improper login configuration for Github CLI.
@ankitakul commented on GitHub (Mar 19, 2021):
I am getting this error now.
@Panquesito7 commented on GitHub (Mar 19, 2021):
You must fork the repository, then clone your forked repository. 🙂
@ankitakul commented on GitHub (Mar 19, 2021):
I was able to create a pull request after forking the repository. Thank you very much for your support!! 😊
@Arjun-Dagar commented on GitHub (Aug 2, 2021):
Can i work on it?
@Panquesito7 commented on GitHub (Aug 5, 2021):
Sure, if you want. I'll review your PR as soon as possible. 🙂
Just follow the steps mentioned in this issue above here.
@github-actions[bot] commented on GitHub (Oct 17, 2021):
This issue has been automatically marked as abandoned because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
@github-actions[bot] commented on GitHub (Oct 24, 2021):
Please ping one of the maintainers once you add more information and updates here. If this is not the case and you need some help, feel free to ask for help in our Gitter channel or our Discord server. Thank you for your contributions!