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 字典和最小值的主要内容,如果未能解决你的问题,请参考以下文章

[基础] 在Python中获得字典列表中最大值与最小值

Python:从字典中获取具有最小值但有多个最小值的键

不使用 max() 和 min() 从字典中获取最大值和最小值

如何从从excel文件派生的大量字典中的值列表中查找最小值和最大值

在包含字典的列表中获取最小值(键,值)

从字典中查找最小值(不包括 0)