Talk:Maximum subarray problem: Difference between revisions

Content deleted Content added
syntaxhighlight & fix lint
 
(One intermediate revision by one other user not shown)
Line 1:
{{WikiProject banner shell|class=|
{{WikiProject Computer science}}
}}
 
== Possibly Erroneous Initialization of s ==
Line 105 ⟶ 107:
here is a working script
 
<syntaxhighlight lang="text">
<code>
max_ending_here = A[0]
 
Line 126 ⟶ 128:
 
print (max_so_far , start, end)
</syntaxhighlight>
</code>
 
== Issues with the "History" section, regarding brute-force ==