Athlete sort in python - HackerRank solution
Solution for hackerRank problem Athlete sort in python
Problem :
You are given a spreadsheet that contains a list of N athletes and their details (such as age, height, weight, and so on). You are required to sort the data based on Kth the attribute and print the final resulting table. Follow the example given below for a better understanding.
Note that is indexed from 0 to M-1, where M is the number of attributes.
Note: If two attributes are the same for different rows, for example, if two athletes are of the same age, print the row that appeared first in the input.
Input Format
Constraints
1<=N, M<=1000
0<=K<M
Each element <= 1000
Output Format
Print the lines of the sorted table. Each line should contain the space separated elements. Check the sample below for clarity.
Sample Input 0:
5 3
10 2 5
7 1 0
9 9 9
1 23 12
6 5 9
1
Sample Output 0
7 1 0
10 2 5
6 5 9
9 9 9
1 23 12
Explanation 0
The details are sorted based on the second attribute since K is zero-indexed.
Algorithm :
1. Start.
2. Get the number of athletes(n) and m as input from the user.
3. Create a list(l).
4. loop from 0 to n
get the details of the athlete and store them in sublist of the list(l).
5. Get the key from the user.
6. sort the list, l based on the key.
7. print the elements of the list.
8. End.
Code :
- map()- used to apply the given function to each item of a given iterable(list,
- split()- splits the input based on the given delimiter and returns a list.
- sort()- sorts the list.
- lambda- used to describe a one line function.
- key- passed as an argument to sort function, based on which the array is
Comments
Post a Comment