Skip to content

Commit de02501

Browse files
committed
提交322 零钱兑换
1 parent 432250d commit de02501

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

322.零钱兑换/solution.html

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Document</title>
7+
</head>
8+
<body>
9+
<script>
10+
// Source : https://leetcode.com/problems/coin-change/
11+
// Author : 悬笔e绝
12+
// Date : 2020-04-09
13+
14+
/**
15+
* @param {number[]} coins
16+
* @param {number} amount
17+
* @return {number}
18+
*/
19+
var coinChange = function(coins, amount) {
20+
var ans = [];
21+
ans[0] = 0;
22+
23+
for (var i = 0, len = coins.length; i < len; i++) {
24+
var item = coins[i];
25+
for (var j = 0; j + item <= amount; j++) {
26+
if (ans[j] === undefined)
27+
continue;
28+
if (ans[j + item] === undefined)
29+
ans[j + item] = ans[j] + 1;
30+
else
31+
ans[j + item] = Math.min(ans[j + item], ans[j] + 1);
32+
}
33+
34+
}
35+
36+
return ans[amount] === undefined ? -1 : ans[amount];
37+
};
38+
</script>
39+
</body>
40+
</html>

0 commit comments

Comments
 (0)