Skip to content

Commit ef7c137

Browse files
sdublishcmccandless
authored andcommitted
change: updated README, tests are now v1.3.0 (exercism#1512)
* change: updated README to match problem-specification * change:updates tests to v1.3.0
1 parent 69b4350 commit ef7c137

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

exercises/change/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ that the sum of the coins' value would equal the correct amount of change.
66
## For example
77

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

1313
## Edge cases
1414

exercises/change/change_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from change import find_minimum_coins
44

55

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

88
class ChangeTest(unittest.TestCase):
99
def test_single_coin_change(self):

0 commit comments

Comments
 (0)