Skip to content

Commit 03f0223

Browse files
authored
Update maximum-unique-subarray-sum-after-deletion.py
1 parent a5d7013 commit 03f0223

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/maximum-unique-subarray-sum-after-deletion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Time: O(n)
22
# Space: O(n)
33

4-
# hash set
4+
# hash table
55
class Solution(object):
66
def maxSum(self, nums):
77
"""

0 commit comments

Comments
 (0)