Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- lightsail
- mybatis
- instance생성
- Java
- 리스트합집합
- db
- route53
- string_agg()
- anymatch메서드
- Spring
- ansible
- AWS
- 리스트차집합
- 3tierarchitecture
- list중복제거
- hashset
- PostgreSQL
- 중복제거
- enumtype
- WordPress
- 지옥같은git
- 널포인터에러
- awsconsole
- 두개리스트비교
- enum
- 리스트교집합
- 리스트비교
- Annotation
- wordpress블로그
- 권한정책
Archives
- Today
- Total
Anyway
[JAVA] 두 개의 리스트에서 차집합 구하기
List A = {1,2,3}List B = {2,3,4} 이렇게 두 개의 리스트가 있을 때 내가 구하고 싶은 것은 A의 차집합니다. // A 리스트의 차집합을 구하는 함수 생성public static List findDifference(List A, List B) { Set setB = new HashSet(B); return A.stream() .filter(element -> !setB.contains(element)) .collect(Collectors.toList());} stream()을 사용한 것은 A의 요소를 stream으로 처리하여 B에 없는 요소만 필터링하기 위해서다. >>> 추가로 [합집합]에 대하여List union = new ArrayList..
카테고리 없음
2025. 1. 3. 09:58