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
- db
- 책 정리
- docker
- spring
- 프로그래머스
- TLS
- sample
- Hibernate
- mariadb
- DISTINCT
- 토비의스프링
- vagrant
- github
- AWS
- Jenkins
- Git
- jdbc
- centos7
- spring boot
- WebHook
- Linux
- TypeScript
- Client
- Java
- ssh
- SSL
- EC2
- 코딩테스트
- window
- Spring Legacy Project
Archives
- Today
- Total
목록중복 제거 (1)
Woopii Vyeolog
[Java] Array 중복 제거
## Github 주소 https://github.com/leewoopyo/java-logic-tests remove_duplication 패키지 GitHub - leewoopyo/java-logic-tests: java-logic-tests java-logic-tests. Contribute to leewoopyo/java-logic-tests development by creating an account on GitHub. github.com 1. Array를 Set으로 변환 후 다시 Array로 변환 Set은 중복을 허용하지 않기 때문에 중복이 있는 Array를 Set으로 변환 시 중복이 제거됨 LinkedSet 은 순서가 보장되는 Set이다 1-1 Array Set // 배열을 HashSet으로 ..
java
2022. 4. 4. 02:22