We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa98316 commit d36fe68Copy full SHA for d36fe68
src/main/java/com/fishercoder/solutions/_421.java
@@ -6,7 +6,11 @@
6
public class _421 {
7
8
public static class Solution1 {
9
- //credit: https://discuss.leetcode.com/topic/63213/java-o-n-solution-using-bit-manipulation-and-hashmap/7
+ /**
10
+ * credit: https://discuss.leetcode.com/topic/63213/java-o-n-solution-using-bit-manipulation-and-hashmap/7
11
+ * <p>
12
+ * Note: comment out those system.out.println statements before submitting on LeetCode, otherwise TLE.
13
+ */
14
public int findMaximumXOR(int[] nums) {
15
int max = 0;
16
int mask = 0;
0 commit comments