Skip to content

Commit 83ab78a

Browse files
author
Joseph Luce
authored
Update 322_coin_change.md
1 parent ace1ac6 commit 83ab78a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

leetcode/medium/322_coin_change.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Similarly, when we get to amount 12 with coin 6, we do 12-6=6, look at amount 6
1616
We repeat this until we reach the given amount.
1717

1818
We can do some further optimizations by removing coins that are over the given amount.
19-
We can also use the minimum coin as our starting amount instead of starting at amount 0.
19+
We can also use the smallest coin as our starting amount instead of starting at amount 0.
2020

2121
```
2222
class Solution:

0 commit comments

Comments
 (0)