프로그래머스 - 로또의 최고 순위와 최저 순위 (Python)
문제 lottos: 민우가 구매한 로또 번호를 담은 배열, 알아볼 수 없는 숫자는 0으로 표기 win_nums: 당첨 번호를 담은 배열 이때, 당첨 가능한 최고 순위와 최저 순위를 차례대로 배열에 담아서 return 하도록 solution 함수를 완성하라. 코드 def solution(lottos, win_nums): answer = [] rank=[6,6,5,4,3,2,1] #1 cnt_0=0 for i in lottos: #2 if i==0: cnt_0+=1 cnt_win=0 for i in lottos: #3 if i in win_nums: cnt_win+=1 answer=[rank[cnt_win+cnt_0],rank[cnt_win]] #4 return answer 풀이 #1: 당첨번호와 일치하는 ..
2022. 6. 6.