Basic and advanced algorithms and data structures
By Christoph Dürr and Jill-Jênn Vie.
pip3 install tryalgo
Demo: TryAlgo in Paris
Dynamic programming some example with coin change:
from tryalgo.subsetsum import coin_change
print(coin_change([3, 5, 11], 29)) # True because 29 = 6*3 + 0*5 + 1*11
Please drop an issue!
© Christoph Dürr and Jill-Jênn Vie (vie@jill-jenn.net). Released under the MIT License.
Contributors include:
- Louis Abraham