Skip to content
forked from jilljenn/tryalgo

Basic and advanced algorithms and data structures

License

Notifications You must be signed in to change notification settings

perarnaud/tryalgo

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

92 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status PyPI PyPI PyPI

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 ([email protected]). Released under the MIT License.

Contributors include:

  • Louis Abraham
  • Ryan Lahfa

About

Basic and advanced algorithms and data structures

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%