You are viewing a single comment's thread. Return to all comments →
from collections import deque n = int(input()) d = deque() for _ in range(n): text = input().rstrip().split() if len(text) > 1: opr, val = text getattr(d, opr)(int(val)) else: getattr(d, text[0])() 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 →