diff --git a/exercises/change/README.md b/exercises/change/README.md index 42e4833fcd5..4e652c0c913 100644 --- a/exercises/change/README.md +++ b/exercises/change/README.md @@ -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 diff --git a/exercises/change/change_test.py b/exercises/change/change_test.py index 7d066074e23..ca77759dec2 100644 --- a/exercises/change/change_test.py +++ b/exercises/change/change_test.py @@ -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):