정렬 Level 2 H-Index - python (프로그래머스) 소스 코드 def solution(citations): citations = sorted(citations) answer = 0 for index, citation in enumerate(citations): if len(citations) - index Python/알고리즘 2023.06.23