You are viewing a single comment's thread. Return to all comments →
Java Solution with Checker class
class Checker implements Comparator {
@Override public int compare(Player p1, Player p2){ if (p1.score == p2.score){ return p1.name.compareTo(p2.name); } else { return p2.score - p1.score; } }
}
Seems like cookies are disabled on this browser, please enable them to open this website
Sorting: Comparator
You are viewing a single comment's thread. Return to all comments →
Java Solution with Checker class
class Checker implements Comparator {
}