We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
N = int(input())
arr = []
for _ in range(N):
command = input().split()
match command[0]:
case 'insert':
arr.insert(int(command[1]), int(command[2]))
case 'print':
print(arr)
case 'remove':
arr.remove(int(command[1]))
case 'append':
arr.append(int(command[1]))
case 'sort':
arr.sort()
case 'pop':
arr.pop()
case 'reverse':
arr.reverse()
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Lists
You are viewing a single comment's thread. Return to all comments →