Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 452 Bytes

README.md

File metadata and controls

10 lines (8 loc) · 452 Bytes

The Coin Change Problem

A dynamic programming solution to the simple coin change problem implemented in C++, given the assumption that the list of denomination has a value of 1.

Running the application

g++ -o <name-you-want-to-give> COIN_CHANGE.cpp
cd /<name-you-gave>

Solved it as part of my algorithms course in 2016, hope it helps someone.