728x90
안녕하십니까. Eun🦆입니다.
풀이법 입니다.
#include <vector>
#include <algorithm>
#include <iostream>
using namespace std;
int solution(vector<int> nums)
{
int answer = 0;
int cnt = 1;
int n = nums.size()/2;
sort(nums.begin(),nums.end());
for(int i=0;i<nums.size();i++)
{
if(i<nums.size()-1)
{
if(nums[i]!=nums[i+1])
cnt++;
}
}
printf("cnt = %d\n",cnt);
if(n>=cnt)
answer = cnt;
else
answer = n;
return answer;
}
네이버 블로그 리뉴얼입니다.
728x90
'개발 > Coding Test' 카테고리의 다른 글
[프로그래머스 C++ Lv2] 최댓값과 최솟값 (0) | 2022.06.06 |
---|---|
[프로그래머스 C++ Lv2] 숫자의 표현 (0) | 2022.06.06 |
[프로그래머스 C++ Lv2] 땅따먹기 (0) | 2022.06.06 |
[프로그래머스 C++ Lv2] 다음 큰 숫자 (0) | 2022.06.06 |
[프로그래머스 C++ Lv2] 올바른 괄호 (0) | 2022.06.06 |
댓글