반응형
https://programmers.co.kr/learn/courses/30/lessons/77484
결과 코드
function solution(lottos, win_nums) {
let zero_count = 0;
let correct = 0;
for(let i in lottos) {
if(lottos[i] == 0) zero_count++;
else {
if(win_nums.includes(lottos[i])) correct++;
}
}
let min = 7 - correct;
let max = 7 - (correct + zero_count);
if(min == 7) min = 6;
if(max == 7) max = 6;
return [max, min];
}
반응형
'코딩테스트 문제풀이 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] 124 나라의 숫자 (0) | 2021.09.29 |
---|---|
[프로그래머스] 숫자 문자열과 영단어 (0) | 2021.09.29 |
[프로그래머스] 짝지어 제거하기 (0) | 2021.09.03 |
[프로그래머스] 크레인 인형뽑기 게임 (0) | 2020.09.25 |
[프로그래머스][DFS] 네트워크 (0) | 2020.03.01 |