An open API service indexing awesome lists of open source software.

https://github.com/noahgift/greedy_coin

Greedy Coin Algorithms in Python
https://github.com/noahgift/greedy_coin

greedy-algorithms greedy-coin python

Last synced: about 1 year ago
JSON representation

Greedy Coin Algorithms in Python

Awesome Lists containing this project

README

          

# greedy_coin
Greedy Coin Algorithms in Python

See Wikipedia Article: https://en.wikipedia.org/wiki/Greedy_algorithm

Usage:

```python
➜ greedy_coin git:(master) python change.py --full 1.34
Quarters 5: , Remainder: 9
Dimes 0: , Remainder: 0
Nickles 1: , Remainder: 4
Pennies 4:
```