We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- Python
- Built-Ins
- Athlete Sort
- Discussions
Athlete Sort
Athlete Sort
Sort by
recency
|
522 Discussions
|
Please Login in order to post a comment
first_multiple_input = input().rstrip().split()
n = int(first_multiple_input[0]) m = int(first_multiple_input[1])
arr = []
for index in range(n): arr.append((index, list(map(int, input().rstrip().split()))))
k = int(input().strip())
sort by the k-th element and maintain order using the index as a secondary key
val = sorted(arr, key=lambda x: (x[1][k], x[0]))
for _, row in val: print(*row)
if name == 'main': first_multiple_input = input().rstrip().split()
This is the line of code to add