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

Class Node

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

Source from the content-addressed store, hash-verified

5struct Node{
6int data;
7struct Node *next;
8Node(int x)
9{
10 data=x;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected