[프로그래머스] H-Index - Java, 자바
난이도
레벨2
문제
https://programmers.co.kr/learn/courses/30/lessons/42747
풀이
위를 참고했지만 이해가 될랑말랑한다.
h번 이상 인용된 논문이(citation[i]) h편(h는 해당 논문보다 인용횟수 크거나 같은 논문편수) 이상인 h
= n편중 h번 이상 인용된 논문이 h편 이상인 h 값
코드
import java.util.Arrays;
public class Solution {
public int solution(int[] citations) {
int answer = 0;
Arrays.sort(citations);
for (int i = 0; i < citations.length; i++) {
int h = citations.length - i;
if (citations[i] >= h) {
answer = h;
break;
}
}
return answer;
}
}
https://bada744.tistory.com/94
https://ju-nam2.tistory.com/74
Author And Source
이 문제에 관하여([프로그래머스] H-Index - Java, 자바), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@kimmjieun/프로그래머스-H-Index-Java-자바저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)