문제 : https://programmers.co.kr/learn/courses/30/lessons/12982
▶ 코드
def solution(d, budget):
d.sort()
c = 0
for a in d:
budget -= a
if budget >=0:
c += 1
return c
'■코테 기출문제 > Summer,Winter Coding(~2018)' 카테고리의 다른 글
[Level 3] 숫자 게임 (0) | 2020.05.12 |
---|---|
[Level 3] 방문 길이 (0) | 2020.05.08 |
[Level 2] 영어 끝말잇기 (0) | 2020.05.08 |
[Level 2] 점프와 순간 이동 (0) | 2020.05.08 |
[Level 2] 소수 만들기 (0) | 2020.05.08 |
[Level 3] 기지국 설치 (0) | 2020.05.08 |
[Level 3] 배달 (0) | 2020.05.08 |
[Level 2] 스킬트리 (0) | 2020.05.06 |