Question: This is for sn algorithms course. Write a function CHANGES(m) (in psudocode), which returns a minimal number of coins to get a total of m
This is for sn algorithms course. Write a function CHANGES(m) (in psudocode), which returns a minimal number of coins to get a total of m cents, Constraints: There are four tvpes of coins with values 1, 5, 10, and 25, respectively. The total amount of monev m is within 1-99 cents, Examples: CHANGES(3) 3: it takes at least 3 coins (1 cent each) to get a total of 3 cents. CHANGES(6) -2: it takes at least 2 coins (a 5-cent coin and 1-cent coin) to get a total of 6 cents. CHANGES(99) 9: it takes at least 9 coins (25 25 + 25 + 10+ 10+1 +1+11) to get a total of 9:9 cents
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
