import java.util.*;
class Solution {
public int solution(int[] d, int budget) {
int answer = 0;
Arrays.sort(d);
for(int i=0; i<d.length; i++){
budget-=d[i];
if(budget<0){
break;
}
answer++;
}
return answer;
}
}
'공부기록 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] MySQL (정리중) (0) | 2023.10.13 |
---|---|
[프로그래머스] 네트워크 (0) | 2023.09.24 |
[프로그래머스] 두 개 뽑아서 더하기 (0) | 2023.09.17 |
[프로그래머스] 짝지어 제거하기 (0) | 2023.09.16 |
[프로그래머스] 폰켓몬 (0) | 2023.09.16 |