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 efa4da1 commit dc2264dCopy full SHA for dc2264d
coin-change/jdy8739.js
@@ -13,4 +13,5 @@ var coinChange = function(coins, amount) {
13
}
14
15
return dp[amount] < amount + 1 ? dp[amount] : -1
16
-};
+};
17
+
0 commit comments