Write a method makeExchange that will determine the minimum number of coins needed to make change for a given amount in American currency. Coins used will be half-dollars, quarters, dimes, nickels, and pennies, worth 50¢, 25¢, 10¢, 5¢ and 1¢, respectively. They'll be represented by the strings H, Q, D, N and P.
The argument passed in will be an integer representing the value in cents. The return value should be an object with the symbols as keys, and the numbers of coins as values. Coins that are not used should not be included in the object.
If the argument passed in is 0 or less, then the method should return an empty object. If the currency that you would like to exchange more than 10000 please return next object:
{error: "You are rich, my friend! We don't have so much coins for exchange"}
makeExchange(0) --> {}
makeExchange(1) --> {"P":1}
makeExchange(43) --> {"Q":1,"D":1,"N":1,"P":3}
makeExchange(91) --> {"H":1,"Q":1,"D":1,"N":1,"P":1}
makeExchange(9999999) --> {error: "You are rich, my friend! We don't have so much coins for exchange"}
- Install Node.js
- Clone this repository:
git clone https://github.com/SergeyKovalchuk/Money-Exchange.git
- Run
npm install
in command line - Run
npm test
in command line - You will see the number of passing and failing tests