반응형
Notice
Recent Posts
Recent Comments
Link
지구정복
[구현] 프로그래머스 - 폰켓몬(1845) 자바 본문
728x90
반응형
-문제
https://school.programmers.co.kr/learn/courses/30/lessons/1845
-풀이
package implementation;
import java.util.HashSet;
public class pro1845 {
public static void main(String[] args) {
int[] nums = {3,1,2,3};
//int[] nums = {3,3,3,2,2,4};
//int[] nums = {3,3,3,2,2,2};
int max = nums.length / 2;
//중복제거
HashSet<Integer> set = new HashSet<>();
for( int num : nums ) {
set.add(num);
}
//중복을 제거한 셋의 크기가 max보다 크면 max,
//작으면 set의 size리턴
if( set.size() > max ) {
System.out.println( max );
} else {
System.out.println( set.size() );
}
}
}
728x90
반응형
'데이터 엔지니어링 정복 > Algorithm' 카테고리의 다른 글
[문자열] 프로그래머스 - 문자열 내림차순으로 배치하기(12917) (0) | 2022.12.28 |
---|---|
[재귀] 백준 - 부등호(2529) (0) | 2022.08.08 |
[구현] 백준 - 아시아 정보올림피아드(2535) (0) | 2022.07.27 |
[DP] 백준 - 이친수 (2193) (0) | 2022.07.24 |
[구현/정렬] 프로그래머스 - 실패율 (Java) (0) | 2022.07.21 |
Comments