We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1813b99 commit d07a952Copy full SHA for d07a952
scripts/algorithms/M/Minimum Time Difference/Minimum Time Difference.java
@@ -1,3 +1,4 @@
1
+// Runtime: 9 ms (Top 62.54%) | Memory: 46.9 MB (Top 41.18%)
2
class Solution {
3
public int findMinDifference(List<String> timePoints) {
4
int N = timePoints.size();
@@ -16,4 +17,4 @@ public int findMinDifference(List<String> timePoints) {
16
17
int a = minutes[N - 1];
18
return Math.min(res, (b - a + 1440) % 1440);
19
}
-}
20
+}
0 commit comments