https://school.programmers.co.kr/learn/courses/30/lessons/42747
1. 해결방법
https://en.wikipedia.org/wiki/H-index
주어진 리스트를 역정렬 한 다음, 인덱스의 위치와 그 값을 비교하면더 H-index를 구한다.
2. 정답코드
def solution(citations):
answer = 0
c_list = sorted(citations, reverse=True)
for i in range(len(c_list)):
if (i + 1) <= c_list[i]:
answer = (i + 1)
else:
return answer
return answer
'Algorithm > 프로그래머스' 카테고리의 다른 글
[프로그래머스] Lv.2 위장 (0) | 2022.09.27 |
---|---|
[프로그래머스] Lv.2 괄호 회전하기 (0) | 2022.09.27 |
[프로그래머스] Lv.2 이진 변환 반복하기 (0) | 2022.09.26 |
[프로그래머스] Lv.1 소수 찾기 (2) | 2022.09.26 |
[프로그래머스] Lv.2 행렬 테두리 회전하기 (0) | 2022.09.20 |