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
- Host: GitHub
- URL: https://github.com/noahgift/greedy_coin
- Owner: noahgift
- License: mit
- Created: 2017-12-03T04:32:41.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-10-16T14:02:40.000Z (almost 5 years ago)
- Last Synced: 2024-10-12T15:31:07.131Z (almost 2 years ago)
- Topics: greedy-algorithms, greedy-coin, python
- Language: Python
- Size: 7.81 KB
- Stars: 1
- Watchers: 3
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: change.py
- License: LICENSE
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:
```