Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/TheAlgorithms/Python
/ Node
Class
Node
data_structures/linked_list/__init__.py:14–17 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
12
13
14
class
Node:
15
def
__init__(self, item: Any, next: Any) -> None:
# noqa: A002
16
self.item = item
17
self.next = next
18
19
20
class
LinkedList:
Callers
1
add
Method · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected