def getMin(self): """ :rtype: int """ return heapq.nsmallest(1)[0] # Your MinStack object will be instantiated and called as such: