DAYS
HOUR
MINS
SEC
Error
Given a value V and array coins[] of size M, the task is to make the change for V cents, given that you have an infinite supply of each of coins{coins1, coins2, ..., coinsm} valued coins. Find the minimum number of coins to make the change. If not possible to make change then return -1.
Example 1:
Input: V = 30, M = 3, coins[] = {25, 10, 5} Output: 2 Explanation: Use one 25 cent coin and one 5 cent coin
Input: V = 11, M = 4,coins[] = {9, 6, 5, 1} Output: 2 Explanation: Use one 6 cent coin and one 5 cent coin
minCoins
() which takes V, M and array coins as input parameters and returns the answer.We strongly recommend solving this problem on your own before viewing its editorial. Do you still want to view the editorial?
Yes