정렬(Comparable, Comparator)
정렬
정렬 대상 클래스
public class Player {
private String name;
private int score;
public Player(String name, int score) {
this.name = name;
this.score = score;
}
// Getters, Setters 생략
}
List<Playe...
devprofessional.hashnode.dev3 min read