[프로그래머스] 거스름돈
2020. 6. 10. 15:08
문제 링크 https://programmers.co.kr/learn/courses/30/lessons/12907 코딩테스트 연습 - 거스름돈 Finn은 편의점에서 야간 아르바이트를 하고 있습니다. 야간에 손님이 너무 없어 심심한 Finn은 손님들께 거스름돈을 n 원을 줄 때 방법의 경우의 수를 구하기로 하였습니다. 예를 들어서 손님께 5�� programmers.co.kr C++ 풀이 #include #include #include using namespace std; int solution(int n, vector money) { sort(money.begin(), money.end()); vector answer; answer.resize(n); for (int i = 0; i < n; i++) if..