문제
풀이
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
vector<int> solution(vector<int> lottos, vector<int> win_nums) {
vector<int> answer(2,lottos.size()+1);
for(int i=0; i<6; i++){
int num = lottos[i];
if(num == 0) answer[0] --;
else if(find(win_nums.begin(), win_nums.end(),num) != win_nums.end()){
answer[0] --;
answer[1] --;
}
}
if(answer[0] >= 6) answer[0]=6;
if(answer[1] >= 6) answer[1]=6;
return answer;
}
'Algorithm > Programers - C++' 카테고리의 다른 글
[프로그래머스]완전탐색 - 모의고사 (0) | 2022.01.27 |
---|---|
[프로그래머스]정렬 - K번째수 (0) | 2022.01.26 |
[프로그래머스] 소수만들기 (0) | 2022.01.25 |
[프로그래머스]내적 & 없는숫자 더하기 / 범용 수치 알고리즘 (0) | 2022.01.24 |
[프로그래머스] 해시1-완주하지 못한 선수 (0) | 2022.01.01 |