Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions exercises/change/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ that the sum of the coins' value would equal the correct amount of change.
## For example

- An input of 15 with [1, 5, 10, 25, 100] should return one nickel (5)
and one dime (10) or [0, 1, 1, 0, 0]
and one dime (10) or [5, 10]
- An input of 40 with [1, 5, 10, 25, 100] should return one nickel (5)
and one dime (10) and one quarter (25) or [0, 1, 1, 1, 0]
and one dime (10) and one quarter (25) or [5, 10, 25]

## Edge cases

Expand Down
2 changes: 1 addition & 1 deletion exercises/change/change_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from change import find_minimum_coins


# Tests adapted from `problem-specifications//canonical-data.json` @ v1.2.0
# Tests adapted from `problem-specifications//canonical-data.json` @ v1.3.0

class ChangeTest(unittest.TestCase):
def test_single_coin_change(self):
Expand Down