Skip to content

Commit bdbe8aa

Browse files
authored
Update minimum-xor-sum-of-two-arrays.py
1 parent 62881ad commit bdbe8aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/minimum-xor-sum-of-two-arrays.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class Solution(object):
66
def minimumXORSum(self, nums1, nums2):
77
# Template translated from:
88
# https://github.com/kth-competitive-programming/kactl/blob/main/content/graph/WeightedMatching.h
9-
def hungarian(a):
9+
def hungarian(a): # Time: O(n^2 * m), Space: O(n + m)
1010
if not a:
1111
return 0, []
1212
n, m = len(a)+1, len(a[0])+1

0 commit comments

Comments
 (0)