mirror of
https://github.com/donnemartin/interactive-coding-challenges.git
synced 2024-03-22 13:11:13 +08:00
20 lines
459 B
Python
20 lines
459 B
Python
from nose.tools import assert_equal
|
|
|
|
|
|
class Challenge(object):
|
|
|
|
def test_coinchange_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_coinchange_ways')
|
|
|
|
|
|
def main():
|
|
test = Challenge()
|
|
test.test_coinchange_ways(change_ways)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|