MCPcopy Index your code
hub / github.com/HuberTRoy/leetCode / __init__

Method __init__

Stack/GetMinStack.py:28–32  ·  view source on GitHub ↗

这里用实例对象。

(self)

Source from the content-addressed store, hash-verified

26 一个先进后出的栈。
27 """
28 def __init__(self):
29 """
30 这里用实例对象。
31 """
32 self.stored = deque()
33
34 def __repr__(self):
35 # 3.6 +

Callers 1

__init__Method · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected