List<String>에서 중복 데이터 처리 방법
중복 데이터 삭제(차집합)import java.util.ArrayList;import java.util.List;public class RemoveDuplicates { public static void main(String[] args) { List list1 = new ArrayList(List.of("apple", "banana", "orange", "grape")); List list2 = new ArrayList(List.of("banana", "kiwi", "grape", "melon")); // Remove duplicates from list1 that are in list2 list1.removeAll(list2); //..
2024.11.07