The link : https://leetcode.com/problems/coin-change/ Coin Change - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 문제 풀이는 다음과 같다. 1. 먼저 amount가 0일 경우, 정답은 어차피 0으로 고정되어있다. 이와 관련된 조건문을 맨 위에 적어주자. if(amount==0) return 0; 2. amount의 값 만큼 vector sum변수를 1개 생성한다. 이때 중요한 점이, int형 최대값으로 초기..