This test is broken:
assert checkio(12, [1, 4, 5]) == 3
There is no combination of three coins of these values [1, 4, 5] that equals 12.
The smallest number of coins to reach a value of 12 is two 5 coins plus two 1 coins, which is four coins.
From: https://py.checkio.org/mission/making-change/solve/
Created at: 2017/03/05 17:36; Updated at: 2017/03/06 03:02
The question is resolved.