Skip to content

Commit 0be73f4

Browse files
Merge branch 'max_xor_bit_trie_1' of https://github.com/DataWorshipper/Python into max_xor_bit_trie_1
2 parents b062619 + 62b2492 commit 0be73f4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bit_manipulation/max_xor_bit_trie.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class TrieNode:
1818
"""Node of the Bitwise Trie."""
1919

2020
def __init__(self) -> None:
21-
self.child: list[TrieNode | None] = [None, None]
21+
self.child: list[TrieNode | None] = [None, None] # child[0] for bit 0, child[1] for bit 1
2222

2323

2424
class BitwiseTrieMaxXOR:

0 commit comments

Comments
 (0)