leetcode-322-零錢兌換

//注意但凡出現數組就要考慮越界 class Solution { public:     int coinChange(vector<int>& coins, int amount) {         sort(coins.begin(), coins.end());         int base = coins[0];         if (amount == 0) return 0;
相關文章
相關標籤/搜索