Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
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
1
class
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
8
class
DoubleLinkedList:
Callers
3
__init__
Method · 0.70
append
Method · 0.70
insert
Method · 0.50
Calls
no outgoing calls
Tested by
no test coverage detected