Search
Duplicate

실패율

문제 설명 및 제한사항

아이디어 및 해결 방법

코드

from collections import Counter def solution(N, stages): cntr = Counter(stages) numreached = [sum(cnt for x, cnt in cntr.items() if x >= n) for n in range(1, N+1)] numcleared = [sum(cnt for x, cnt in cntr.items() if x > n) for n in range(1, N+1)] error = [1 - c/r if r != 0 else 0 for c, r in zip(numcleared, numreached)] answer = list(sorted(list(range(1, N+1)), key=lambda x: -error[x-1])) return answer
Python
복사

출처

프로그래머스 코딩테스트 연습 https://school.programmers.co.kr/learn/challenges