IT STUDY LOG
[JAVA] 프로그래머스: 폰켓몬 본문
# 문제 내용
# 알고리즘 분류
- 해시
# 풀이
import java.util.*;
class Solution {
public int solution(int[] nums) {
int result = 0;
HashSet<Integer> set = new HashSet<Integer>();
for (int i = 0; i < nums.length ; i++){
set.add(nums[i]);
}
int possible = nums.length/2;
if (possible < set.size()) {
result = possible;
} else {
result = set.size();
}
return result;
}
}
'computer science > coding test' 카테고리의 다른 글
[JAVA] 프로그래머스: 같은 숫자는 싫어 (0) | 2023.04.25 |
---|---|
[MySQL] 프로그래머스: 3월에 태어난 여성 회원 목록 출력하기 (0) | 2023.04.24 |
[Python] 백준 12026번: BOJ 거리 (0) | 2023.04.21 |
[Python] 백준 16953번: A → B (0) | 2023.04.20 |
[Python] 백준 11058번: 크리보드 (0) | 2023.04.18 |
Comments