algorithms
algorithms copied to clipboard
Fix the bug in the Maximum Subarray algorithm which outputs zero when…
Fix the bug in the Maximum Subarray algorithm which outputs zero when the array is all negative numbers. For example, when the array is [-2, -3, -2, -1, -2, -4, -5, -3], the correct output is -2, but it outputs 0.