파이썬 이것저것/코테준비

[Python] 프로그래머스 등수 매기기

agingcurve 2022. 12. 29. 20:20
반응형

https://school.programmers.co.kr/learn/courses/30/lessons/120882?language=python3

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

 

 

문제풀이

def solution(scores):
    if scores != None:
        mean_score = []
        answer = []
        for socre in scores:
            mean = (socre[0] + socre[1]) / len(socre)
            mean_score.append(mean)
        sort_mean_scores = sorted(mean_score,reverse=True)
        for i in mean_score:
            answer.append(sort_mean_scores.index(i) +1)    
    return answer