Skip to content

Commit

Permalink
forum suggestions (remove edge cases from instructions)
Browse files Browse the repository at this point in the history
  • Loading branch information
tasxatzial committed Dec 19, 2024
1 parent 2a7a7aa commit 821b5fa
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions exercises/change/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,3 @@ Correctly determine the fewest number of coins to be given to a customer such th

- An amount of 15 with available coin values [1, 5, 10, 25, 100] should return one coin of value 5 and one coin of value 10, or [5, 10].
- An amount of 40 with available coin values [1, 5, 10, 25, 100] should return one coin of value 5, one coin of value 10, and one coin of value 25, or [5, 10, 25].

## Edge cases

- Does your algorithm work for any given set of coins?
- Can you ask for negative change?
- Can you ask for a change value smaller than the smallest coin value?

0 comments on commit 821b5fa

Please sign in to comment.