MCPcopy 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
8class Node:
9 data: int
10 next_node: Node | None = None
11
12
13class LinkedList:

Callers 1

appendMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected