https://programmers.co.kr/learn/courses/30/lessons/12982
import java.util.Arrays;
class Solution {
public int solution(int[] d, int budget) {
int answer = 0;
Arrays.sort(d);
for(int a : d) {
if(budget-a>=0) {
budget-=a;
answer++;
}
else {
break;
}
}
return answer;
}
}
'코딩테스트연습 > 프로그래머스' 카테고리의 다른 글
[프로그래머스 - JAVA] 2019 KAKAO BLIND RECRUITMENT 오픈채팅방 (0) | 2021.10.26 |
---|---|
[프로그래머스 - JAVA] 연습문제 2016년 (0) | 2021.10.25 |
[프로그래머스 - JAVA] 월간 코드 챌린지 시즌2 약수의 개수와 덧셈 (0) | 2021.10.24 |
[프로그래머스 - JAVA] 월간 코드 챌린지 시즌1 내적 (0) | 2021.10.24 |
[프로그래머스 - JAVA] 월간 코드 챌린지 시즌2 음양 더하기 (0) | 2021.10.24 |