Given the € currency without cents, the possible change is composed of: 1, 2, 5, 10, 20, 50, 100, 200, 500
There is 4 ways to change 5 euros:
Write a function changes
that returns how many set of change
can be made for a given amount and a set of coins:
def changes(amount, coins):
...
The correction bot will call your function like this:
>>> from solution import *
>>> changes(42, (1, 2, 5, 10, 20, 50, 100, 200, 500))
>>> 271
For this one, I expect to get 271, in less than 100ms.
Yep, I'll try with other set of pieces and other amounts.
Search for dynamic programming or recursive with memoization, or divide and conquer.
There's no corrections yet, hit the `Submit` button to send your code to the correction bot.
Keyboard shortcuts: