Sha256: ad6483a2a33682158edb840c0a39ee79860e75be18467c4a3caa0b737ba9c74a
Contents?: true
Size: 1.04 KB
Versions: 55
Compression:
Stored size: 1.04 KB
Contents
# Change Correctly determine the change to be given using the least number of coins. The solution will need to accept a value of change to be given and an array of coin denominations. The program returns the array of coin denominations to produce the correct amount of change. For example, if change for 37 cents is required from coins with the denominations of 1, 5, 10 and 25 then the result is an array with the values: 1, 1, 10 and 25. ## Setup Go through the setup instructions for ECMAScript to install the necessary dependencies: http://exercism.io/languages/ecmascript/installation ## Requirements Install assignment dependencies: ```bash $ npm install ``` ## Making the Test Suite Pass Execute the tests with: ```bash $ npm test ``` In the test suite, all tests but the first have been skipped. Once you get a test passing, you can enable the next one by changing `xtest` to `test`. ## Source Unknown ## Submitting Incomplete Solutions It's possible to submit an incomplete solution so you can see how others have completed the exercise.
Version data entries
55 entries across 55 versions & 1 rubygems