def solution(d, budget):
answer = 0
d = sorted(d)
for i in d:
if budget - i >= 0:
budget = budget - i
answer += 1
return answer
'알고리즘' 카테고리의 다른 글
[BOJ / Python] 14719 빗물 (0) | 2023.06.20 |
---|---|
[프로그래머스 / Python] 햄버거 만들기 (0) | 2023.06.17 |
[프로그래머스 / Python] 추억 점수 (0) | 2023.06.13 |
[프로그래머스 / Python] 대충만든자판 (0) | 2023.06.10 |
[프로그래머스 / Python] 과일 장수 (0) | 2023.06.06 |