#include <vector>
using namespace std;
int solution(vector<int> nums)
{
int answer = 0;
vector<int> total_vec(2000000, 0);
int total = nums.size() / 2;
for(int i=0; i < nums.size();i++){
total_vec[nums[i]]++;
}
for(int i =0; i < total_vec.size();i++){
if(total_vec[i] != 0){
answer ++;
}
if(answer == total)
break;
}
return answer;
}
'자윤이와고리즘 > Code' 카테고리의 다른 글
[프로그래머스] K번째 수 (0) | 2019.07.22 |
---|---|
[프로그래머스] 모의고사 (0) | 2019.07.22 |
[프로그래머스] 올바른 괄호 (0) | 2019.07.22 |
[프로그래머스] 카펫 (0) | 2019.07.22 |
[프로그래머스] 전화번호 목록 (0) | 2019.07.22 |