Skip to content

Commit 53ce9b8

Browse files
author
Erdenezul
committed
fix typo
1 parent 96536ad commit 53ce9b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dynamic_programming/coin_change.py

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

0 commit comments

Comments
 (0)