Skip to content

Commit 7963080

Browse files
authored
Update xor-operation-in-an-array.py
1 parent 5019362 commit 7963080

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Python/xor-operation-in-an-array.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ def xorNumsBeginEven(n, start):
2121

2222
# Time: O(n)
2323
# Space: O(1)
24+
import operator
25+
26+
2427
class Solution2(object):
2528
def xorOperation(self, n, start):
2629
"""

0 commit comments

Comments
 (0)