import java.util.*;
class Solution {
public int solution(int[] people, int limit) {
int answer = 0;
Arrays.sort(people);
int start = 0;
int end = people.length-1;
while(start<= end){
if(people[start]+ people[end]<=limit){
start++;
end--;
}else{
end--;
}
answer++;
}
return answer;
}
}
'공부기록 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] 멀리 뛰기 (1) | 2023.12.01 |
---|---|
[프로그래머스] 전화번호 목록 (0) | 2023.11.22 |
[프로그래머스] 카펫 (0) | 2023.11.09 |
[프로그래머스] 귤 고르기 (0) | 2023.11.09 |
[프로그래머스] 크기가 작은 문자열 (0) | 2023.11.08 |