Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- hackerank
- objtofbx
- FBX
- 1759번
- Unreal
- 의미와 무의미의 경계에서
- 언리얼 플러그인
- 2단계로킹
- 1253번
- 셰그먼트트리
- 1967번
- 트랜잭션 관리
- Security
- oracle
- 데이터베이스 배움터
- 오손데이터읽기
- 비재귀셰그먼트
- C++
- 언리얼 커스텀 플러그인
- OS
- 백준
- command not found
- SQL
- 민겸수
- 실습
- 백준 1253번
- UActor
- UnrealMP
- 5639
- Linux
Archives
- Today
- Total
fatalite
C++ / 폰켓몬 / 해시 본문
Problem
난이도 : 프로그래머스 1단계 63%
분류: 해시(?), Set, Unique
Solution
#include <vector>
#include <set>
using namespace std;
int solution(vector<int> nums)
{
int answer = 0;
int size = nums.size() / 2;
//Implementation
set<int> IntegerSet;
for(int i : nums){
IntegerSet.insert(i);
}
if(IntegerSet.size() > size){
return size;
}else{
return IntegerSet.size();
}
}
'코딩 인터뷰 > 프로그래머스' 카테고리의 다른 글
C++ 프로세스 [고득점 Kit 스택 / 큐] (0) | 2023.05.13 |
---|---|
C++ 같은 숫자는 싫어 [스택] (0) | 2023.05.13 |
C++ / N개의 최소 공배수 구하기 (0) | 2023.05.10 |
C++ / 예상대진표 (0) | 2023.05.09 |
C++ / 구명보트 (0) | 2023.05.08 |