标签:自己 题目 图片 span leetcode lis solution inf mic
题目描述:
自己的提交:
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-不浪费原料的汉堡制作方案
标签:自己 题目 图片 span leetcode lis solution inf mic
原文地址:https://www.cnblogs.com/oldby/p/11972508.html