Description Usage Arguments Details Value Examples
It takes an array as input and it spills out three values: the value of sum, the start and the end indexes in the original array
1 | max_subarray(A)
|
A |
an array of length > 0 |
The time complexity of this function is linear
maxSum |
the sum of subarray found by the function |
indx_start |
the starting index of the subarray in the original array |
indx_end |
the ending index of the subarray in the original array |
1 | max_subarray(c(2, -1, 3, -5, 10, 8, -8, 0))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.