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.
if name == 'main':
N = int(input())
lst=[]
for i in range(N):
command = input().split()
match(command[0].lower()):
case "insert":
lst.insert(int(command[1]), int(command[2]))
case "print":
print(lst)
case "remove":
lst.remove(int(command[1]))
case "append":
lst.append(int(command[1]))
case "sort":
lst.sort()
case "pop":
lst.pop()
case "reverse":
lst.reverse()
case _:
print("Invalid Command")
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 →
if name == 'main': N = int(input()) lst=[] for i in range(N): command = input().split() match(command[0].lower()): case "insert": lst.insert(int(command[1]), int(command[2]))