Skip to content

Commit 589aba1

Browse files
committed
Runtime: 24 ms (Top 19.37%) | Memory: 53.8 MB (Top 78.38%)
1 parent 7f0ea13 commit 589aba1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/algorithms/T/Total Hamming Distance/Total Hamming Distance.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Runtime: 24 ms (Top 19.37%) | Memory: 53.8 MB (Top 78.38%)
12
class Solution {
23
public int totalHammingDistance(int[] nums) {
34
int total = 0;
@@ -11,4 +12,4 @@ public int totalHammingDistance(int[] nums) {
1112
}
1213
return total;
1314
}
14-
}
15+
}

0 commit comments

Comments
 (0)