322. Coin change

注意點: 邊界條件的確認 初始化用Inf(除了0位置) 返回值是否爲inf的判斷 遞推公式爲min(res[money],1+res[money-coin]) 函數內部先判斷money是否大於等於coin def coinChange(self, coins, amount): """ :type coins: List[int] :type amo
相關文章
相關標籤/搜索