第13751题 单选
以下实现最少币种找零的Python代码采用的是哪种算法?
def findCoins(coins, Money):
  coins_used = []
  for coin in coins:
    while Money >= coin:
      coins_used.append(coin)
      Money -= coin
  return coins_used

coins = [100, 50, 20, 10, 5, 2, 1] #货币种类,单位相同
M = int(input()) #输入换算的金额
coins_needed = find_coins(coins, M)

result = [(c,coins_needed.count(c)) for c in coins]
result = [x for x in result if x[1] > 0]
A

枚举算法

B

贪心算法

C

迭代算法

D

递归算法