This commit is contained in:
krahets
2023-10-08 01:43:28 +08:00
parent 3d2d669b43
commit baac2d11a7
52 changed files with 999 additions and 625 deletions
+1 -1
View File
@@ -95,7 +95,7 @@ comments: true
```csharp title="coin_change_greedy.cs"
/* 零钱兑换:贪心 */
int coinChangeGreedy(int[] coins, int amt) {
int CoinChangeGreedy(int[] coins, int amt) {
// 假设 coins 列表有序
int i = coins.Length - 1;
int count = 0;