How would you approach this problem? Comment your answer
Consider a list (list = []). You can perform the following commands:
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
[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
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]