Skip to content

Commit 6ac9fdf

Browse files
authored
Update maximum-score-of-spliced-array.py
1 parent 2868f4a commit 6ac9fdf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/maximum-score-of-spliced-array.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(1)
33

4-
# greedy, kadane algorithm
4+
# greedy, kadane's algorithm
55
class Solution(object):
66
def maximumsSplicedArray(self, nums1, nums2):
77
"""

0 commit comments

Comments
 (0)