This commit is contained in:
Erdenezul 2017-10-25 15:58:46 +08:00
parent 96536ad761
commit 53ce9b8068

View File

@ -2,7 +2,7 @@
You have m types of coins available in infinite quantities
where the value of each coins is given in the array S=[S0,... Sm-1]
Can you determine number of ways of making change for n units using
the given types of coints?
the given types of coins?
https://www.hackerrank.com/challenges/coin-change/problem
"""
def dp_count(S, m, n):