Recent Posts
Notice
No Rules Rules
폰켓몬 (feat. 프로그래머스, 1845번) 본문
728x90
반응형
폰켓몬
https://programmers.co.kr/learn/courses/30/lessons/1845
반응형
// woohyeon.kim
#include <vector>
#include <set>
using namespace std;
int solution(vector<int> nums)
{
set<int> tmpl;
for(const auto& num : nums)
tmpl.insert(num);
return min(nums.size() / 2, tmpl.size());
}
// *&)*@*
STL 중 set을 사용하여 쉽게 풀이하였습니다.
set의 특징은 다음과 같습니다.
- 중복된 원소는 없애준다.
- 자동정렬해준다.
여기에서는 1번의 이유로 set을 사용해 보았습니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
짝지어 제거하기 (feat. 프로그래머스, 12973번) (0) | 2022.07.23 |
---|---|
가장 먼 노드 (feat. 프로그래머스, 49189번) (0) | 2022.07.23 |
입국심사 (feat. 프로그래머스, 43238번) (0) | 2022.07.23 |
타겟 넘버 (feat. 프로그래머스, 43165번) (0) | 2022.07.23 |
체육복 (feat. 프로그래머스, 42862번) (0) | 2022.07.23 |
Comments