6 lines
137 B
Python
6 lines
137 B
Python
from stack import Stack, StackType
|
|
|
|
class StackDeep(Stack):
|
|
def __init__(self, name: str):
|
|
Stack.__init__(self, StackType.Deep, name)
|