배열의 중복 값 제거하는 법
Collection Framework에서
List 인터페이스의 ArrayList 클래스는 중복 값을 허용하지만
Set 인터페이스의 HashSet 클래스는 중복 값을 허용하지 않기 때문에
배열을 ArrayList로 만들어서 ArrayList를 HashSet 담갔다가 빼면 중복 값이 사라집니다.
Set<Integer> Set명 = new HashSet<>(List명);
List<Integer> List명2 = new ArrayList<>(Set명);
매개변수에 넣어주시면 됩니다!