코딩테스트 연습 - 예산
func solution(_ d:[Int], _ budget:Int) -> Int { let costs = d.sorted() var sum = 0 for (index, cost) in costs.enumerated() { sum += cost if sum > budget { return index } } return d.count }
GitHub - 예산