Get a list, sorted in increasing order by the last element in each tuple from a given list of non-empty tuples

Certified Associate Developer

Write a program to get a list, sorted in increasing order by the last element

in each tuple from a given list of non-empty tuples.

Input: [(1, 3), (3, 2), (2, 1)]


Output: [(2, 1), (3, 2), (1, 3)]

  Discussion posts and replies are publicly visible