Problem
You are given coins of different denominations and a total amount of money amount. Write a function to compute the fewest number of coins that you need to make up that amount. If that amount of money cannot be made up by any combination of the coins, return -1
.
Examples
1 | Input: coins = [1, 2, 5], amount = 11 |
1 | Input: coins = [2], amount = 3 |
Boundary Conditions
- coins is null
- amount < 0 => -1
Solution1
Method: Dynamic Programming
Time Complexity: O(|amount| |coins|)
Space Complexity: O(|amount|)
1 | class Solution: |
or
1 | class Solution: |
Solution2
Method: Breadth-first Search
Time Complexity:
Space Complexity:
1 | class Solution(object): |