풀이
def solution(lottos, win_nums):
answer = []
rank = [6, 6, 5, 4, 3, 2, 1]
zero_count = lottos.count(0)
count = 0
for i in lottos:
if i in win_nums:
count += 1
answer.append(rank[zero_count + count])
answer.append(rank[count])
return answer
다른 사람 풀이
def solution(lottos, win_nums):
rank = {
0: 6,
1: 6,
2: 5,
3: 4,
4: 3,
5: 2,
6: 1
}
return [rank[len(set(lottos) & set(win_nums)) + lottos.count(0)], rank[len(set(lottos) & set(win_nums))]]
'Engineering WIKI > Programmers' 카테고리의 다른 글
[프로그래머스] 소수 만들기 (0) | 2022.04.01 |
---|---|
[프로그래머스] 내적 (0) | 2022.04.01 |
[프로그래머스] 음양 더하기 (0) | 2022.04.01 |
[프로그래머스] 없는 숫자 더하기 (0) | 2022.04.01 |
[프로그래머스] 크레인 인형뽑기 게임 (0) | 2022.04.01 |
[프로그래머스] 키패드 누르기 (0) | 2022.04.01 |
[프로그래머스] 숫자 문자열과 영단어 (0) | 2022.04.01 |
[프로그래머스] 신고 결과 받기 (0) | 2022.04.01 |