MaryanMorel / tryalgo

Basic and advanced algorithms and data structures

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status

tryalgo

Basic and advanced algorithms and data structures
By Christoph Dürr and Jill-Jênn Vie.

Install

pip3 install tryalgo

Documentation

http://docs.tryalgo.org

Usage

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

Found a bug?

Please drop an issue!

Authors

© Christoph Dürr and Jill-Jênn Vie (vie@jill-jenn.net). Released under the MIT License.

Contributors include:

  • Louis Abraham

About

Basic and advanced algorithms and data structures

License:MIT License


Languages

Language:Python 100.0%Language:Makefile 0.0%