[99클럽 코테 스터디 12일차 TIL] 프로그래머스 - H-Index
99클럽 코테 스터디 12일차 TIL 입니다.
Last updated
99클럽 코테 스터디 12일차 TIL 입니다.
Last updated
import java.util.Arrays;
class Solution {
public int solution(int[] citations) {
int len = citations.length;
Arrays.sort(citations);
for (int i = 0; i < citations.length; i++) {
if (citations[i] >= len) return len;
len--;
}
return 0;
}
}