프로그래머스[c++] 로또의 최고 순위와 최저 순위
answer는 '순위'정보이므로 따로 순위 배열을 만들어 배열의 인덱스를 이용.
정답코드:
#include <string>
#include <vector>
using namespace std;
vector<int> solution(vector<int> lottos, vector<int> win_nums) {
vector<int> answer;
int win = 0;
int lose = 0;
for (int i = 0; i < lottos.size(); i++)
{
for (int j = 0; j < win_nums.size(); j++)
{
if (lottos[i] == win_nums[j])
{
win++;
lose++;
}
}
}
for (int i = 0; i < lottos.size(); i++)
if (lottos[i] == 0)
win++;
int rank[7] = {6,6,5,4,3,2,1};
answer.push_back(rank[win]);
answer.push_back(rank[lose]);
return answer;
}
'Algorithm' 카테고리의 다른 글
[C++] 카카오프렌즈 컬러링북 - 프로그래머스 (0) | 2021.05.28 |
---|---|
프로그래머스 크레인 인형뽑기 게임 c++ (0) | 2021.05.28 |
프로그래머스 - 카펫 c++ (0) | 2021.05.23 |
프로그래머스 기능개발 c++ (0) | 2021.05.23 |
프로그래머스 소수 만들기 c++ (0) | 2021.05.23 |
최근댓글