leetcode-165周赛-1276-不浪费原料的汉堡制作方案

Posted 真不知道叫啥好

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode-165周赛-1276-不浪费原料的汉堡制作方案相关的知识,希望对你有一定的参考价值。

题目描述:

 

 

 

 

 

 自己的提交:

class Solution:
    def numOfBurgers(self, tomatoSlices: int, cheeseSlices: int) -> List[int]:
        t = (tomatoSlices - 2 * cheeseSlices) / 2
        c = cheeseSlices - t
        if t % 1 != 0 or t < 0 or c < 0:
            return []
        return [int(t),int(c)]
        

 

以上是关于leetcode-165周赛-1276-不浪费原料的汉堡制作方案的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 第 165 场周赛

Leetcode周赛165

LeetCode 5276. 不浪费原料的汉堡制作方案 Number of Burgers with No Waste of Ingredients

leetcode165. 比较版本号

[H二分] lc1889. 装包裹的最小浪费空间(二分+思维+好题+周赛244_4)

LeetCode 165 Compare Version Numbers(比较版本号)(string)(*)