Skip to content

Commit 69e8165

Browse files
committed
Runtime: 2 ms (Top 59.66%) | Memory: 41.5 MB (Top 48.39%)
1 parent 1f1796e commit 69e8165

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/algorithms/M/Minimum Amount of Time to Fill Cups/Minimum Amount of Time to Fill Cups.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Runtime: 2 ms (Top 59.66%) | Memory: 41.5 MB (Top 48.39%)
12
class Solution {
23
public int fillCups(int[] amount) {
34
Arrays.sort(amount);
@@ -9,4 +10,4 @@ public int fillCups(int[] amount) {
910
if(x==0&&y==0){return z;}
1011
else{return z;}
1112
}
12-
}
13+
}

0 commit comments

Comments
 (0)