User Portlet User Portlet

Vectorizer Extraordinaire
Discussions
Greetings, I would like to obtain the permutation resulting from the sorting of the given list (as opposed to the sorted list): input = {5.3, 2.7, 9.2, 0.0} output = {0.0, 2.7, 5.3, 9.2} Desired Output = {4, 2, 1, 3} Thanks in...