good first issuehacktoberfest
Repository metrics
- Stars
- (2 個のスター)
- PR merge metrics
- (PR metrics pending)
説明
Problem: Given a head/root node of a linked list, determine if it contains a cycle. Return true if cycle exists otherwise false.
class Node{
public:
int val;
Node* next;
Node(int s){
val = s;
next = NULL;
}
};
-
Follow and Read the Contributing Guidelines.
-
Only the assigned person is allowed to raise the PR on this Issue.
-
To get this issue assigned to you comment on this issue, along with your name, branch and year.
Note: Make sure to put the question under the relevant folder structure, and then make another folder having the question name and inside that folder you can write your solution in any preferred language.