How do I sort a LinkedHashMap of int arrays, by having the first element in the array sorted in descending order, and the second element sorted in ascending order?
e.g.
No. Vol. Rank becomes No. Vol. Rank
1 4 2 3 5 1
2 4 1 1 4 2
3 5 1 2 4 1
4 2 5 4 2 5
where No. is the key and Vol. and Rank are the elements in the int array that the LinkedHashMap contains