DS/Coding Test
[Python] 로또의 최고 순위와 최저 순위
프로그래머스 2021 Dev-Matching: 웹 백엔드 개발자 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 정답코드 def solution(lottos, win_nums): rank=[6,6,5,4,3,2,1] cnt_0 = lottos.count(0) ans = 0 for x in win_nums: if x in lottos: ans += 1 return rank[cnt_0 + ans],rank[ans] 정답은 출력되지만 런타임 에러로 문제해결 실패한 코드 from collections import Counter rank = {1: 6, 2: 5, ..