Skip to content

Commit b8ababc

Browse files
authored
Update find-the-maximum-sequence-value-of-array.py
1 parent 731ce93 commit b8ababc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/find-the-maximum-sequence-value-of-array.py

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

4-
# prefix sum, dp
4+
# bitmasks, prefix sum, dp
55
class Solution(object):
66
def maxValue(self, nums, k):
77
"""

0 commit comments

Comments
 (0)