i have an array and an arraylist:
String[] league = {"Leeds United","Liverpool","Chelsea","Manchester City","Stoke City"...
List<Integer> points = new ArrayList<Integer>();
points.add(7);
poinst.add(0);
points.add(5);
points.add(0);
points.add(5);
where :
leeds united = 7
liverpool = 0 etc...
i want to be able to sort the list to be in descending numerical order but the league array should reflect this sort.
is this possible? and how would i do it. thanks