AlgoGenesis / C

AlgoGenesis is a centralized open-source platform dedicated to providing optimized and well-documented algorithm implementations in C. Perfect for both beginners and advanced users, this repository serves as a comprehensive learning resource for solving algorithmic challenges.
MIT License
38 stars 125 forks source link

[NEW ALGORITHM] kadane's algorithm #228

Closed Rohinipilla closed 2 days ago

Rohinipilla commented 4 days ago

Description:

Kadane's Algorithm is used to solve the maximum subarray problem, which aims to find the contiguous subarray within a one-dimensional array of numbers that has the largest sum. It's an efficient approach that runs in O(n) time, making it ideal for large datasets.

Checklist:

applications of this algorithm are

  1. Maximum Sum Subarray
  2. 2D Maximum Sum Subarray
  3. Stock Market Analysis
  4. Dynamic Programming Problems
github-actions[bot] commented 4 days ago

👋 Thank you for raising an issue! We appreciate your effort in helping us improve. Our team will review it shortly. Stay tuned!

Rohinipilla commented 4 days ago

ok, Thank you. I am waiting

Rohinipilla commented 2 days ago

@pankaj-bind can i do it or it is already done it. can you assign me want to contibute