Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/codemistic/Data-Structures-and-Algorithms
/ Node
Class
Node
Python/stack using linked list.py:1–4 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
1
class
Node:
2
def
__init__(self,value=None):
3
self.value = value
4
self.next=next
5
6
class
LinkedList:
7
def
__init__(self):
Callers
1
push
Method · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected