You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
About
A dynamic programming solution to the coin change problem implemented in C++