-->

Lists in Python - Hacker Rank Solution | Hindi | Lists in Python | Apna Hindi Tech










Hello Friends 

рдЖрдЬ рд╣рдо рдЖрдкрдХो Hacker Rank рдкрд░ Lists in python рдХा рдХंрдк्рд▓ीрдЯ рд╕ॉрд▓्рдпूрд╢рди рдмрддाрдПंрдЧे рд╡рд╣ рднी рдЖрд╕ाрди рднाрд╖ा рдоें। рддो рджोрд╕्рддों рдЪрд▓िрдП рдЬाрдирддे рд╣ैं рд╕ॉрд▓्рдпूрд╢рди ।



Problem :- Lists in Python - Hacker Rank Solution



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 :-

[132]


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 :-

[6510]
[15910]
[951]



Solution :-

if __name__ == '__main__':
    N = int(input())
    
lst = []

for i in range(0,N):
    s = input().split()
    if s[0] == "append":
        lst.append( int(s[1]) )
    elif s[0] == "insert":
        lst.insert(int(s[1]) , int(s[2]))
    elif s[0] == "remove":
        lst.remove(int(s[1]))
    elif s[0] == "pop":
        lst.pop()
    elif s[0] == "index":
        lst.index(int(s[1]))
    elif s[0] == "count":
        lst.count(int(s[1]))
    elif s[0] == "sort":
        lst.sort()
    elif s[0] == "reverse":
        lst.reverse()
    elif s[0] == "print":
        print(lst)


Video Tutorial :-




DISCLAIMER:-
The above hole problem statement is given by hackerrank.com but the solution is generated by the  Apna Hindi Tech authority if any of the query regarding this post or website fill the following contact form.

......Thank YouЁЯШК......

рдпрд╣ рднी рдкрдв़ें

Post a Comment