mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-23 04:20:16 +08:00
Fix some typos (#3038)
This commit is contained in:
@ -49,7 +49,7 @@ public class CoinChange {
|
||||
*
|
||||
* @param coins The list of coins
|
||||
* @param amount The amount for which we need to find the minimum number of
|
||||
* coins. Finds the the minimum number of coins that make a given value.
|
||||
* coins. Finds the minimum number of coins that make a given value.
|
||||
*/
|
||||
public static int minimumCoins(int[] coins, int amount) {
|
||||
// minimumCoins[i] will store the minimum coins needed for amount i
|
||||
|
Reference in New Issue
Block a user