Sort Tuples
Easy📝 Description
Sort list of tuples by their second element
Input Format
List of tuples in format (a,b)
Output Format
Sorted list of tuples
Constraints
List size ≤ 1000
🔍 Sample Input
(1,3) (2,1) (3,2)
✅ Sample Output
(2,1) (3,2) (1,3)
Code Editor
Please login to run and submit code.
Results
Suggested Solution
Shortcuts: Ctrl+Enter to submit, Ctrl+Shift+R to run