https://programmers.co.kr/learn/courses/30/lessons/77484#fnref1
const hitToRank = {
6: 1,
5: 2,
4: 3,
3: 4,
2: 5,
1: 6,
0: 6
}
function solution(lottos, win_nums) {
const undefinedNumber = lottos.filter(num=>num===0).length;
const hitCount = win_nums.filter(num=>lottos.includes(num)).length;
return [hitToRank[undefinedNumber + hitCount], hitToRank[hitCount]];
}
728x90
'Basic > Algorithm' 카테고리의 다른 글
숫자 문자열과 영단어 (0) | 2021.08.13 |
---|---|
비밀지도 (0) | 2021.08.13 |
다트 게임 (2) | 2021.08.04 |
댓글