MCPcopy Create free account
hub / github.com/Vishruth-S/CompetitiveCode / Node

Method Node

GeeksForGeeks/Palindrome_Linked_List/Solution.cpp:8–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6int data;
7struct Node *next;
8Node(int x)
9{
10 data=x;
11 next=NULL;
12}
13};
14
15

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected