Solución
solution.tsTypeScript
from collections import deque
def command_history(commands: list, maxlen: int) -> list:
# Retorna los últimos maxlen comandos usando una estructura de tamaño fijo
result = deque(commands, maxlen=maxlen)
return list(result)0respuestas