MCPcopy Index your code
hub / github.com/doocs/leetcode / Node

Class Node

solution/0700-0799/0716.Max Stack/Solution.py:1–5  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1class Node:
2 def __init__(self, val=0):
3 self.val = val
4 self.prev: Union[Node, None] = None
5 self.next: Union[Node, None] = None
6
7
8class DoubleLinkedList:

Callers 3

__init__Method · 0.70
appendMethod · 0.70
insertMethod · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected