How do I sort a list of indices by what they're pointing to in python?
I have
indices = list(range(len(mylist)))
I want to sort the indices so that if a precedes b in indices then mylist[a] > mylist[b].
|
|
|
|||||||||||||
|
|
Also, let me add the following snippet as an answer, using the information provided in your original question...
...and the additional info you have in your comment
Then you can simply do:
|
|||
|
|
|
Python 2.6+, most elegant answer:
|
|||
|
|