Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/TheAlgorithms/Python
/ Node
Class
Node
data_structures/linked_list/print_reverse.py:8–10 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
6
7
@dataclass
8
class
Node:
9
data: int
10
next_node: Node | None = None
11
12
13
class
LinkedList:
Callers
1
append
Method · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected