I have an array of values, and an array which determines the order.
How can I quickly re-arrange the array in the given order?
data = ['0','1','2','3','4','5']
order = [3,1,2,0,4,5]
I want:
data = ['3','1','2','0','4','5']
|
|
If you are not sure if the indices are correct, you can do this:
|
|||||||||
|
|
You can use the specifically for this kind of task designed method values_at:
|
|||||||||||
|
|
Not as good as @Jakub's answer using
|
|||
|
|