Kumar-laxmi / Algorithms

A Repository for algorithms in C, C++, Python and Java
Apache License 2.0
326 stars 367 forks source link

Kadane's Algorithm to find SubArray with Maximum Sum #1667

Closed eknathmali closed 1 year ago

eknathmali commented 1 year ago

Is your feature request related to a problem? Please describe. Yes, I saw the array folder in the repo doesn't have many algorithms so Kadane's algorithm is also one of them used to solve the problem of finding subarray with a maximum sum in O(n) Time Complexity.

Describe the solution you'd like Standard Algorithm

Additional context Adding this algo can help others to learn more algorithms related to array.

Kumar-laxmi commented 1 year ago

REFER #1328