PeteCake 字典和最小值
Posted run_qin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PeteCake 字典和最小值相关的知识,希望对你有一定的参考价值。
def cakes(recipe, available):
# TODO: insert code
count = []
for item in recipe:
if item not in available:
return 0
else:
count.append(int(available[item]/recipe[item]))
return min(count)
还可以
def cakes(recipe, available): return min(available.get(k, 0)/recipe[k] for k in recipe)
以上是关于PeteCake 字典和最小值的主要内容,如果未能解决你的问题,请参考以下文章
不使用 max() 和 min() 从字典中获取最大值和最小值