예산1 [프로그래머스] L1 예산 [프로그래머스] L1 예산 [풀이] 1 2 3 4 5 6 7 8 9 10 11 12 13 14 import java.util.*; class Solution { public int solution(int[] d, int budget) { int answer = 0; Arrays.sort(d); for(int i=0; i= d[i]){ budget -= d[i]; answer++; } } return answer; } } Colored by Color Scripter cs 2020. 12. 19. 이전 1 다음