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 2fe2225 commit b2f06e6Copy full SHA for b2f06e6
javascript/Coin-Change.js renamed to javascript/322-Coin-Change.js
@@ -14,4 +14,4 @@ var coinChange = function(coins, amount) {
14
}
15
16
return dp[amount] === amount+1 ? -1 : dp.pop()
17
-};
+};
0 commit comments