Skip to content

Commit 2868f4a

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

C++/maximum-score-of-spliced-array.cpp

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 {
66
public:
77
int maximumsSplicedArray(vector<int>& nums1, vector<int>& nums2) {

0 commit comments

Comments
 (0)