문제 링크
def solution(num_list): answer = sorted(num_list) return answer[:5]
개선 :
def solution(num_list): return sorted(num_list)[:5]