#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;
}
'둥지 > 알고리즘' 카테고리의 다른 글
[백준 11404] 플로이드 (1) | 2023.06.09 |
---|---|
[백준 11726] 2×n 타일링 (0) | 2023.05.26 |
[프로그래머스] 프로세스 (0) | 2023.05.04 |
[프로그래머스] 연속 부분 수열 합의 개수 (0) | 2023.05.02 |
[코드업 3704] 계단 오르기2 (0) | 2023.03.08 |