[Python] 프로그래머스 - 로또의 최고 순위와 최저 순위
728x90
반응형
programmers.co.kr/learn/courses/30/lessons/77484?language=python3
최근에 진행된 "2021 Dev-Matching: 웹 백엔드 개발자" 코딩테스트에 출제된 문제이다.
def solution(lottos, win_nums):
rank = {6: 1, 5: 2, 4: 3, 3: 4, 2: 5, 1: 6, 0: 6}
cnt = 0
super = lottos.count(0)
for i in lottos:
if i in win_nums:
cnt += 1
return [rank[cnt + super], rank[cnt]]
728x90
반응형
'문제풀이 > Programmers' 카테고리의 다른 글
[Python] 프로그래머스 - 베스트앨범 (0) | 2021.05.02 |
---|---|
[Python] 프로그래머스 - 행렬 테두리 회전하기 (0) | 2021.04.28 |
[Python] 프로그래머스 - 삼각 달팽이 (2) | 2021.04.25 |
[Python] 프로그래머스 - 이진 변환 반복하기 (0) | 2021.04.25 |
[Python] 프로그래머스 - 신규 아이디 추천 (0) | 2021.04.25 |
TAGS.