This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Stack : | |
| def __init__(self): | |
| self.top = [] | |
| def isEmpty(self): | |
| return len(self.top) == 0 | |
| def size(self): | |
| return len(self.top) |