MCPcopy 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

1class Node:
2 def __init__(self,value=None):
3 self.value = value
4 self.next=next
5
6class LinkedList:
7 def __init__(self):

Callers 1

pushMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected