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:
insert i e
: Insert integer at position .print
: Print the list.remove e
: Delete the first occurrence of integer .append e
: Insert integer at the end of the list.sort
: Sort the list.pop
: Pop the last element from the list.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.
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 :-
Sample Output 0 :-
Solution :-
Video Tutorial :-
......Thank YouЁЯШК......
Related Posts
- Lists in Python - Hacker Rank Solution | Hindi | Lists in Python | Apna Hindi Tech
- Write a function in Python - Hacker Rank Solution | Apna Hindi Tech | Hindi Tutorial
- Find the Runner-Up Score! in Python - Hacker Rank Solution | Apna Hindi Tech
- No Idea in python - Hacker Rank Solution | Apna Hindi Tech | Hindi Tutorial
- Loops in Python - Hacker Rank Solution | Apna Hindi Tech | Hindi Tutorial
- Introduction to Sets - Hacker Rank Solution | Apna Hindi Tech | Python Hacker Rank
Post a Comment
Post a Comment