Skip to content

Commit 8045914

Browse files
committed
Runtime: 786 ms (Top 7.64%) | Memory: 42.4 MB (Top 87.50%)
1 parent e4c94de commit 8045914

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/algorithms/N/Number of Burgers with No Waste of Ingredients/Number of Burgers with No Waste of Ingredients.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Runtime: 786 ms (Top 7.64%) | Memory: 42.4 MB (Top 87.50%)
12
class Solution {
23
public List<Integer> numOfBurgers(int tomatoSlices, int cheeseSlices) {
34
List<Integer>list=new ArrayList<>();
@@ -18,4 +19,4 @@ public List<Integer> numOfBurgers(int tomatoSlices, int cheeseSlices) {
1819
list.add(cs);
1920
return list;
2021
}
21-
}
22+
}

0 commit comments

Comments
 (0)