Talk:Maximum subarray problem: Difference between revisions

Content deleted Content added
Implementing WP:PIQA (Task 26)
syntaxhighlight & fix lint
 
Line 107:
here is a working script
 
<syntaxhighlight lang="text">
<code>
max_ending_here = A[0]
 
Line 128:
 
print (max_so_far , start, end)
</syntaxhighlight>
</code>
 
== Issues with the "History" section, regarding brute-force ==