We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47b29ed commit 6b7469bCopy full SHA for 6b7469b
coin-change/jinvicky.java
@@ -13,4 +13,4 @@ public int coinChange(int[] coins, int amount) {
13
}
14
return dp[amount]>amount ? -1:dp[amount];
15
16
-}
+}
0 commit comments