Renamed coinchange to coin_change.

This commit is contained in:
Donne Martin
2015-08-09 07:26:44 -04:00
parent aaea7a8bfc
commit 039baaa116
3 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
from nose.tools import assert_equal
class Challenge(object):
def test_coin_change_ways(self,solution):
assert_equal(solution(0, [1, 2]), 0)
assert_equal(solution(100, [1, 2, 3]), 884)
assert_equal(solution(1000, range(1, 101)), 15658181104580771094597751280645)
print('Success: test_coin_change_ways')
def main():
test = Challenge()
test.test_coin_change_ways(change_ways)
if __name__ == '__main__':
main()