MCPcopy
hub / github.com/ndleah/python-mini-project / Node

Class Node

Stack_structure/main.py:1–4  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 1

pushMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected