https://programmers.co.kr/learn/courses/30/lessons/77484
import java.util.*;
class Solution {
public int[] solution(int[] lottos, int[] win_nums) {
int hit = 0;
int zeroCount = 0;
for(int i=0; i<lottos.length; i++){
int lottosNum = lottos[i];
for(int j=0; j<win_nums.length; j++){
if(lottosNum == win_nums[j]) hit++;
}
if(lottosNum == 0) zeroCount++;
}
int[] scoreArray = {6, 6, 5, 4, 3, 2, 1};
int rScore = scoreArray[hit];
int sScore = scoreArray[hit + zeroCount];
int[] answer = {0, 0};
if(hit == 0 && zeroCount == 0 ){
answer[0] = 0;
answer[1] = 0;
}
else{
answer[0] = sScore;
answer[1] = rScore;
}
return answer;
}
}
14번 케이스 문제 있어서 채점 통과 불가.
이미 통과된 답변들도 안되는듯함.
'교육 > 코테' 카테고리의 다른 글
[프로그래머스]JS 없는 숫자 더하기 (0) | 2022.05.19 |
---|---|
[프로그래머스]JS 크레인 인형뽑기 게임 (0) | 2022.05.19 |
[프로그래머스]JS 키패드 누르기 (0) | 2022.05.18 |
[프로그래머스]JS 숫자문자열과 영단어 (0) | 2022.05.18 |
[프로그래머스]JAVA 신규 아이디 추천 (0) | 2022.05.13 |