import java.util.*;
class Solution {
public int solution(int[] citations) {
int answer = 0;
Arrays.sort(citations);
for(int i=0; i<=citations.length; i++) {
for(int j=0; j<citations.length; j++) {
if(citations[j]>=i && citations.length-j>=i) {
answer = i;
break;
}
}
}
return answer;
}
}
'Problem Solving > Programmers' 카테고리의 다른 글
[Level 2] 큰 수 만들기 (0) | 2022.04.06 |
---|---|
[Level 2] 카펫 (0) | 2022.04.06 |
[Level 2] 다리를 지나는 트럭 (0) | 2022.04.06 |
[Level 2] 위장 (0) | 2022.04.06 |
[Level 2] 괄호 회전하기 (0) | 2022.04.06 |