Question d’entretien chez Microsoft

Implement an API which supports stack-like API + get max, i.e: * top() * pop() *push(elem) * get_max()

Réponse à la question d'entretien

Utilisateur anonyme

25 août 2022

Solution includes 2 stacks (1 regular and one stack of maximums)

3