코딩테스트
[파이썬(python)] 코딩테스트 데브 매칭 로또의 최고 순위
고후
2022. 4. 1. 14:40
https://programmers.co.kr/learn/courses/30/lessons/77484
def solution(lottos, win_nums):
answer = []
count = 0 #맞힌 숫자 개수
count_0 = 0 #지워진 숫자 개수
#맞힌 개수 별 로또 순위
win = {0:6, 1:6, 2:5, 3:4, 4:3, 5:2, 6:1}
for l in lottos:
if l == 0:
count_0 += 1
elif l in win_nums:
count += 1
return [win[count+count_0], win[count]]
return answer