You are viewing a single comment's thread. Return to all comments →
Here is my attempt:
from collections import deque d = deque() for _ in range(int(input())): op, *args = input().rsplit() getattr(d, op)(*args) print(*d)
Seems like cookies are disabled on this browser, please enable them to open this website
Collections.deque()
You are viewing a single comment's thread. Return to all comments →
Here is my attempt: