## Question 1 What is the minimum number of coins required to make up the following total with the set of coins available to us? coins = [1, 2, 3, 4] total = 11 ### Options 1. -1 Incorrect We can reach the total because we can use the same coin multiple times! ---------------------------- 2. 3 Correct Denominations = 4 + 4 + 3 ---------------------------- 3. 11 Incorrect We are looking for the minimum number of coins needed, not the maximum. ---------------------------- --------------------------------------------- ## Question 2 What is the minimum number of coins required to make up the following total with the set of coins available to us? coins = [1, 2, 3] total = 0 ### Options 1. 0 Correct Denominations = 0, because the total amount is 0. ---------------------------- 2. -1 Incorrect ---------------------------- 3. 1 Incorrect ---------------------------- ---------------------------------------------