본문 바로가기
언어/파이썬

로또의 최고 순위와 최저 순위 파이썬 코드

by tovantablack 2021. 6. 7.
728x90
728x90
def solution(lottos, win_nums):
    answer = [0,0]
    cnt = 0
    rank = [6,6,5,4,3,2,1]
    #원소 비교
    for i in lottos:
        if i in win_nums:
            cnt += 1
    print(cnt)

    answer[0] = rank[cnt + lottos.count(0)]
    answer[1] = rank[cnt]

    
    return answer
728x90
728x90

댓글