Skip to content

Commit 871b0ed

Browse files
committed
Coin Change solution
1 parent e87f7d4 commit 871b0ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

coin-change/kimjunyoung90.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ public int coinChange(int[] coins, int amount) {
2525

2626
return dp[amount] > amount ? -1 : dp[amount];
2727
}
28-
}
28+
}

0 commit comments

Comments
 (0)