뚜당탕탕
[프로그래머스 / Python] (정렬) H-Index 본문
https://programmers.co.kr/learn/courses/30/lessons/42747#
def solution(citations):
for h in range( len(citations), 0, -1 ) :
answer = 0
for cit in citations :
if h <= cit :
answer += 1
if h <= answer :
return h
return answer
'💯 문제 풀이 > 프로그래머스' 카테고리의 다른 글
[프로그래머스 / Python] (스택/큐) 기능개발 (0) | 2022.03.08 |
---|---|
[프로그래머스 / Python] 카펫 - 완전탐색 (0) | 2022.01.15 |
[프로그래머스 / Python] 문자열 내 p와 y의 개수 (0) | 2021.12.10 |
[프로그래머스 / Python] Skill Check Test Level.1 (0) | 2021.11.26 |
[프로그래머스 / Python] 문자열 내 마음대로 정렬하기 (0) | 2021.11.25 |
Comments