IT STUDY LOG

[JAVA] 프로그래머스: 폰켓몬 본문

computer science/coding test

[JAVA] 프로그래머스: 폰켓몬

roheerumi 2023. 4. 24. 10:19

# 문제 내용

프로그래머스: 폰켓몬

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

 

# 알고리즘 분류

  • 해시

 

# 풀이

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;
    }
}

 

Comments