본문 바로가기
둥지/알고리즘

[프로그래머스] 폰켓몬

by 까닭 2023. 5. 8.

문제링크

#include <vector>
#include <set>

using namespace std;

int solution(vector<int> nums)
{
    int answer = 0;
    set<int> pSet = {};

    for (int num : nums)
    {
        pSet.insert(num);
    }

    answer = min(pSet.size(), nums.size() / 2);

    return answer;
}