Remove the Smallest
You can picture a stack as a pile: the bottom is on the left, and the top is on the right. Given a list stack, find the minimum value and remove only its first occurrence when reading from left to right. Keep all other elements in their original order.
Примеры
Ввод
[2, 8, 3, -6, 7, 3]Вывод
[2, 8, 3, 7, 3]Ввод
[4, 8, 3, 7, 3]Вывод
[4, 8, 7, 3]Ввод
[1, 2, 3]Вывод
[2, 3]Нужно реализовать
def remove_min(stack: list[int]) -> list[int]:
Теги
stack
Συνδεθείτε για να δείτε το ιστορικό υποβολών
ΣύνδεσηΣυνδεθείτε για να χρησιμοποιήσετε τον AI Mentor
ΣύνδεσηTests12
Visible tests
Κρυφό τεστ 7
Κρυφό τεστ 8
Κρυφό τεστ 9
Κρυφό τεστ 10
Κρυφό τεστ 11
Κρυφό τεστ 12
They run when you press "Submit" — your whole solution is checked against them so you can't hard-code answers for the visible cases.
Focus radio
Paused · SomaFM · Fluid