Question d’entretien chez Indeed

How to find the minimum value in a stack with constant time complexity?

Réponse à la question d'entretien

Utilisateur anonyme

17 sept. 2015

Keep track of the minimum value in a second stack/variable when you push. This way minimum value is always at hand.