Basic Data Type and List questions

 Consider a list (list = []). You can perform the following commands:

  1. insert i e: Insert integer  at position .
  2. print: Print the list.
  3. remove e: Delete the first occurrence of integer .
  4. append e: Insert integer  at the end of the list.
  5. sort: Sort the list.
  6. pop: Pop the last element from the list.
  7. reverse: Reverse the list.

Initialize your list and read in the value of  followed by  lines of commands where each command will be of the  types listed above. Iterate through each command in order and perform the corresponding operation on your list.

Example





  • : Append  to the list, .
  • : Append  to the list, .
  • : Insert  at index .
  • : Print the array.
    Output:
[1, 3, 2]

Input Format

The first line contains an integer, , denoting the number of commands.
Each line  of the  subsequent lines contains one of the commands described above.

Constraints

  • The elements added to the list must be integers.

Output Format

For each command of type print, print the list on a new line.

Sample Input 0

12
insert 0 5
insert 1 10
insert 0 6
print
remove 6
append 9
append 1
sort
print
pop
reverse
print

Sample Output 0

[6, 5, 10]
[1, 5, 9, 10]
[9, 5, 1]
>

Solution

if __name__ == '__main__':
    N = int(input())
    L = []
    arr = list()
    for _ in range(N):
        L.append(input().split())
        
    print(L)
    for i in L:
      if i[0] == "insert":
        arr.insert(int(i[1]), int(i[2]))
      elif i[0] == "print":
        print(arr)
      elif i[0] == "remove":
        arr.remove(int(i[1]))
      elif i[0] == "append":
        arr.append(int(i[1]))
      elif i[0] == "sort":
        arr.sort()
      elif i[0] == "pop":
        arr.pop()
      elif i[0] == "reverse":
        arr.reverse()

Comments

Popular posts from this blog

Implicit objects in Django template

What are non field errors in django forms

Token Authentication in Django rest framework : Using Curl commands