I have a list of lists of this form :
testlist((a 22) ( b 2) ( c 5))
My goal is to sort the testlist based on the numbers' values (5 first greatest values). Is there a way to achieve this without having to iterate over the list and compare numbers to each other?