Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/santosh2702/listtuples
Hackerrank
https://github.com/santosh2702/listtuples
problem python
Last synced: 13 days ago
JSON representation
Hackerrank
- Host: GitHub
- URL: https://github.com/santosh2702/listtuples
- Owner: santosh2702
- Created: 2018-05-27T16:50:00.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-05-30T11:02:33.000Z (over 6 years ago)
- Last Synced: 2024-11-06T19:33:17.882Z (2 months ago)
- Topics: problem, python
- Language: Python
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Listtuples
# Tuples
# Task
Given an integer,n , and n space-separated integers as input, create a tuple, , of those integers. Then compute and print the result of hash(t).Note: hash() is one of the functions in the __builtins__ module, so it need not be imported.
# Input Format
The first line contains an integer,n , denoting the number of elements in the tuple.
The second line contains n space-separated integers describing the elements in tuple t.# Output Format
Print the result of hash(t).
# Lists
Consider a list (list = []). You can perform the following commands:
insert i e: Insert integer e at position i.
print: Print the list.
remove e: Delete the first occurrence of integer e.
append e: Insert integer e 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 n followed by n 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.# Input Format
The first line contains an integer, n, denoting the number of commands.
Each line i of the n 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.