Skip to content

Commit 89f5a2f

Browse files
committed
Runtime: 5 ms (Top 87.83%) | Memory: 46.8 MB (Top 47.53%)
1 parent 191f8dc commit 89f5a2f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/algorithms/C/Compare Strings by Frequency of the Smallest Character/Compare Strings by Frequency of the Smallest Character.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Runtime: 5 ms (Top 87.83%) | Memory: 46.8 MB (Top 47.53%)
12
class Solution {
23
public int[] numSmallerByFrequency(String[] queries, String[] words) {
34
int[] ans = new int[queries.length];
@@ -41,4 +42,4 @@ public int binarySearch(int[] arr, int target) {
4142
}
4243
return arr.length - idx;
4344
}
44-
}
45+
}

0 commit comments

Comments
 (0)