728x90
반응형
https://programmers.co.kr/learn/courses/30/lessons/12982
using System;
public class Solution {
public int solution(int[] d, int budget) {
int answer = 0;
Array.Sort(d);
foreach(int item in d)
if ((budget -= item) >= 0) ++answer;
return answer;
}
}
반응형
'프로그래머스_C# > Level_1' 카테고리의 다른 글
[프로그래머스 C#] 약수의 개수와 덧셈 (0) | 2021.09.05 |
---|---|
[프로그래머스 C#] 3진법 뒤집기 (0) | 2021.09.05 |
[프로그래머스 C#] 1주차 부족한 금액 계산하기 (0) | 2021.09.04 |
[프로그래머스 C#] 두 개 뽑아서 더하기 (0) | 2021.09.03 |
[프로그래머스 C#] 2016년 (0) | 2021.09.03 |