MCPcopy 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
14class Node:
15 def __init__(self, item: Any, next: Any) -> None: # noqa: A002
16 self.item = item
17 self.next = next
18
19
20class LinkedList:

Callers 1

addMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected