일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- db
- 리스트차집합
- AWS
- ansible
- 권한정책
- enumtype
- lightsail
- 널포인터에러
- anymatch메서드
- mybatis
- 3tierarchitecture
- awsconsole
- string_agg()
- enum
- Java
- PostgreSQL
- 지옥같은git
- 리스트교집합
- 중복제거
- 두개리스트비교
- Spring
- 리스트합집합
- route53
- wordpress블로그
- list중복제거
- Annotation
- hashset
- WordPress
- instance생성
- 리스트비교
- Today
- Total
Anyway
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..
List A = {3}List B = {3,5,6} A와 B의 리스트에서 중복된 값을 제거하고 싶을 때 // 중복 값을 찾기 위해 HashSet 사용HashSet setA = new HashSet(A);HashSet setB = new HashSet(B);// 교집합을 구해 중복된 값 확인HashSet intersection = new HashSet(setA)intersection.retainAll(setB);// 결과 리스트List result = new ArrayList();//A의 중복되지 않은 값 추가 for (Long num : A) { if (!intersection.contains(num)) { result.add(num); }} // B의 중복되지 않은 값 추가 for (L..
Set seqNoList = new HashSet(seqNoListForCheck); List newSeqNoList = new ArrayList(seqNoList);⚠️ 클라이언트로부터 두 가지의 list를 전달받는데 하나의 list로 합쳐 중복값을 제거해야 했다. List seqNoListForCheck = new ArrayList(); for(Long seqNo : reqDto.getFinalSeqNoList()) { seqNoListForCheck.add(seqNo); } for(SeqNoUseYn seqNo : reqDto.getSeqNoUseYnList()) { seqNoListForChe..