코드
import java.util.Arrays;
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;
}else {
answer++;
}
}
return answer;
}
}
접근방법
'Backend > Algorithm' 카테고리의 다른 글
36. sort - 가장 큰 수 (0) | 2020.12.14 |
---|---|
35. toUpper/LowerCase - 이상한 문자 만들기 (0) | 2020.12.03 |
33. 2중 반복문 - 직사각형 별찍기 (0) | 2020.11.28 |
32. long - x만큼 간격이 있는 n개의 숫자 (0) | 2020.11.23 |
31. ascii code, Character - 문자열 내림차순으로 배치하기 (0) | 2020.11.21 |