문제
https://school.programmers.co.kr/learn/courses/30/lessons/42747
설계
- 모든 숫자 탐색, 2중 for문
def solution(citations):
answer = 0
for i in citations: # 모든 숫자 탐색
cnt = 0
for j in range(len(citations)): # 해당 숫자에서 인용 횟수 확인
if i <= citations[j]:
cnt += 1
if i >= cnt: # 논문이 인용된 횟수가 h번 이상
if answer < cnt: # max값 확인
answer = cnt # 논문이 몇편 인용되어있는지가 cnt
return answer
'PS (Problem Solving) > Programmers' 카테고리의 다른 글
[프로그래머스] 점프와 순간이동 (0) | 2022.11.09 |
---|---|
[프로그래머스] 행렬의 곱셈 - 파이썬, 자바스크립트 (0) | 2022.11.08 |
[프로그래머스] N개의 최소공배수 (0) | 2022.11.01 |
[프로그래머스] 영어 끝말잇기 (0) | 2022.10.31 |
[프로그래머스] 최소직사각형 (0) | 2022.10.27 |