Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/geekcomputers/Python
/ Node
Class
Node
Merge_linked_list.py:5–8 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
3
4
# Node class
5
class
Node:
6
def
__init__(self, data):
7
self.data = data
8
self.next = None
9
10
11
# Constructor to initialize the node object
Callers
1
append
Method · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected