Class Solution
-
- All Implemented Interfaces:
public final class Solution1276 - Number of Burgers with No Waste of Ingredients\.
Medium
Given two integers
tomatoSlicesandcheeseSlices. The ingredients of different burgers are as follows:Jumbo Burger:
4tomato slices and1cheese slice.Small Burger:
2Tomato slices and1cheese slice.
Return
[total_jumbo, total_small]so that the number of remainingtomatoSlicesequal to0and the number of remainingcheeseSlicesequal to0. If it is not possible to make the remainingtomatoSlicesandcheeseSlicesequal to0return[].Example 1:
Input: tomatoSlices = 16, cheeseSlices = 7
Output: 1,6 Explantion: To make one jumbo burger and 6 small burgers we need 4\*1 + 2\*6 = 16 tomato and 1 + 6 = 7 cheese. There will be no remaining ingredients.
Example 2:
Input: tomatoSlices = 17, cheeseSlices = 4
Output: [] Explantion: There will be no way to use all ingredients to make small and jumbo burgers.
Example 3:
Input: tomatoSlices = 4, cheeseSlices = 17
Output: [] Explantion: Making 1 jumbo burger there will be 16 cheese remaining and making 2 small burgers there will be 15 cheese remaining.
Constraints:
<code>0 <= tomatoSlices, cheeseSlices <= 10<sup>7</sup></code>
-
-
Constructor Summary
Constructors Constructor Description Solution()
-
Method Summary
Modifier and Type Method Description final List<Integer>numOfBurgers(Integer tomatoSlices, Integer cheeseSlices)-
-
Method Detail
-
numOfBurgers
final List<Integer> numOfBurgers(Integer tomatoSlices, Integer cheeseSlices)
-
-
-
-