Skip to content

Commit d07a952

Browse files
committed
Runtime: 9 ms (Top 62.54%) | Memory: 46.9 MB (Top 41.18%)
1 parent 1813b99 commit d07a952

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/algorithms/M/Minimum Time Difference/Minimum Time Difference.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Runtime: 9 ms (Top 62.54%) | Memory: 46.9 MB (Top 41.18%)
12
class Solution {
23
public int findMinDifference(List<String> timePoints) {
34
int N = timePoints.size();
@@ -16,4 +17,4 @@ public int findMinDifference(List<String> timePoints) {
1617
int a = minutes[N - 1];
1718
return Math.min(res, (b - a + 1440) % 1440);
1819
}
19-
}
20+
}

0 commit comments

Comments
 (0)