Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
Added coin change problem. #162
Conversation
Added coin change algorithm code in Golang to find the total number of combinations that can be achieved with the given number of coins to get the specified sum.
Checked on my local system and it is working exactly fine. golangci-lint check also returns no error. |
@@ -0,0 +1,29 @@ | |||
/* Coin Change problem | |||
1. Finding the total number of combination that can be achieved with the given number of coins to get the specified sum. |
nomisrevol
Sep 28, 2020
Collaborator
Please provide a more informative description. About the problem, how to solve it, and reference also.
Added coin change algorithm code in Golang to find the total number of combinations that can be achieved with the given number of coins to get the specified sum.