Skip to content

Commit 5023caf

Browse files
committed
Runtime: 454 ms (Top 75.74%) | Memory: 71.3 MB (Top 97.04%)
1 parent 7560430 commit 5023caf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/algorithms/B/Bitwise ORs of Subarrays/Bitwise ORs of Subarrays.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Runtime: 454 ms (Top 75.74%) | Memory: 71.3 MB (Top 97.04%)
12
class Solution {
23
public int subarrayBitwiseORs(int[] arr) {
34
int n = arr.length;
@@ -21,4 +22,4 @@ public int subarrayBitwiseORs(int[] arr) {
2122
}
2223
return s.size();
2324
}
24-
}
25+
}

0 commit comments

Comments
 (0)