I've got a 2D array that I'd like to sort into descending order depending on the contents of the first column, however I'd like the array to retain each row and move the second column as the first moves. To put it into an example;
[2, 5]
[4, 18]
[1, 7]
[9, 3]
would be sorted into:
[9, 3]
[4, 18]
[2, 5]
[1, 7]
Thanks.