[Java] List 중복 제거
2022. 10. 31. 20:24
프로그래밍/JAVA
Stream의 distinct()를 이용한 list 중복 제거 👉 list.stream().distinct().collect(Collectors.toList()); import java.util.Arrays; import java.util.List; import java.util.stream.Collectors; public class RemoveListDuplication { public static void main(String[] args) { // List 준비 List list = Arrays.asList("A", "B", "C", "A"); // 중복 제거 List newList = list.stream().distinct().collect(Collectors.toList()); // 결과 출..