h-index

문제설명입력 & 출력나의 풀이import java.util.*;class Solution { public int solution(int[] citations) { int h = 0; Arrays.sort(citations); for(int i = citations.length-1 ; i >= 0 ; i--){ if(citations[i] >= h+1){ h++; }else{ break; } } return h; }} 이번 문제는 H-Index를 구하는 문제입니다. H-Index란 "h"개의 논문이 각..
지누박
'h-index' 태그의 글 목록