[Python] H-Index 1. 문제 2. 풀이 과정 방법 1) 이진탐색을 사용한다. 최소값 즉, start = 0이고 최대는 가능한 n편의 최대가 배열의 길이이므로 end = l로 설정하였다. def solution(citations): citations.sort() l = len(citations) s = 0 e = l #최댓값 while s 코딩문제풀이/프로그래머스 2021.08.27