Skip to content

Commit f9108ee

Browse files
committed
Runtime: 7 ms (Top 17.72%) | Memory: 48.7 MB (Top 54.45%)
1 parent c45694e commit f9108ee

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/algorithms/T/The K Weakest Rows in a Matrix/The K Weakest Rows in a Matrix.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Runtime: 7 ms (Top 17.72%) | Memory: 48.7 MB (Top 54.45%)
12
class Solution {
23
public int[] kWeakestRows(int[][] mat, int k) {
34
Map<Integer, Integer> map = new HashMap<>();
@@ -31,4 +32,4 @@ private static Integer getBits(int[] arr) {
3132

3233
return count;
3334
}
34-
}
35+
}

0 commit comments

Comments
 (0)