So I have a list of lists
[
["c",2,5],
["bb",6,2],
["a",7,11],
...
]
I want it sorted like the following :
[
["a",7,11],
["bb",6,2],
["c",2,5],
...
]
Sorting by each lists first value. How would this be done? (So it was sorted by a < bb < c
)