I've been attempting to find a way to sort a multidensional array. It is a two dimensional array containing distances and city names. For example:
String idArray[][];
idArray = new String[3][2];
with the following values:
10,name1
30,name2
4,name3
I want to sort the entire array based on...