XOR Trie¶
Table of Contents¶
- 421. Maximum XOR of Two Numbers in an Array (Medium)
- 2935. Maximum Strong Pair XOR II (Hard)
- 1707. Maximum XOR With an Element From Array (Hard)
- 1803. Count Pairs With XOR in a Range (Hard)
- 1938. Maximum Genetic Difference Query (Hard)
- 2479. Maximum XOR of Two Non-Overlapping Subtrees (Hard) 👑
421. Maximum XOR of Two Numbers in an Array¶
-
LeetCode | LeetCode CH (Medium)
-
Tags: array, hash table, bit manipulation, trie
2935. Maximum Strong Pair XOR II¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: array, hash table, bit manipulation, trie, sliding window
1707. Maximum XOR With an Element From Array¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: array, bit manipulation, trie
1803. Count Pairs With XOR in a Range¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: array, bit manipulation, trie
1938. Maximum Genetic Difference Query¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: array, hash table, bit manipulation, depth first search, trie
2479. Maximum XOR of Two Non-Overlapping Subtrees¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: tree, depth first search, graph, trie