Skip to content

Commit 764b51d

Browse files
authored
Update intersection-of-multiple-arrays.py
1 parent c16cf49 commit 764b51d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/intersection-of-multiple-arrays.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Time: O(n * l + r), n = len(nums), l = len(nums[0])
22
# Space: O(r), r = max(nums)-min(nums)
33

4-
# counting sort
4+
# freq table, counting sort
55
class Solution(object):
66
def intersection(self, nums):
77
"""

0 commit comments

Comments
 (0)