sort a List<Tuple> from highest to lowest

java

Solution

java.util.Collections.sort(list, Comparator)

You will need to write a `Comparator<Tuple<String, int[], int>>`

Problem

``` List<Tuple<String, int[], int>> ``` I want to sort the `List` by the `int` from highest to lowest.

Original source