처음 코드

def solution(num_list):
    answer = sorted(num_list)
    return answer[5:]

def solution(num_list):
    return sorted(num_list)[5:]