sort the list

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Shi Mu

    #1

    sort the list

    I have a list like [[1,4],[3,9],[2,5],[3,2]]. How can I sort the list
    based on the second value in the item?
    That is,
    I want the list to be:
    [[3,2],[1,4],[2,5],[3,9]]
Working...