class Solution {
public int[] solution(int[] lottos, int[] win_nums) {
int[] answer = new int[2];
int zero = 0; int ok = 0;
for(int i=0 ;i<6; i++) {
if(lottos[i]==0) {
zero++;
continue;
}
for(int j=0; j<6; j++) {
if(lottos[i]==win_nums[j]) {
ok++;
break;
}
}
}
answer[1] = ok>=2 ? 7-ok : 6;
answer[0] = answer[1]-zero>0 ? answer[1]-zero : 1;
return answer;
}
}
'Problem Solving > Programmers' 카테고리의 다른 글
[Level 1] 크레인 인형뽑기 게임 (0) | 2022.03.23 |
---|---|
[Level 1] 키패드 누르기 (0) | 2022.03.23 |
[Level 1] 숫자 문자열과 영단어 (0) | 2022.03.23 |
[Level 1] 신규 아이디 추천 (0) | 2022.03.23 |
[Level 1] 신고 결과 받기 (0) | 2022.03.23 |