본문 바로가기
Beakjoon&프로그래머스/파이썬

[프로그래머스/파이썬] 로또의 최고 순위와 최저 순위

by 현장 2021. 5. 15.

-코드

def solution(lottos, win):
    rank = [6, 6, 5, 4, 3, 2, 1]
    answer = []
    cnt = 0
    for i in lottos:
        if i in win:
            cnt += 1
    cnt2 = cnt + lottos.count(0)
    answer.append(rank[cnt2])
    answer.append(rank[cnt])
    return answer