kadane-algorithm
There are 5 repositories under kadane-algorithm topic.
Siddharth1698/Image-Processing-to-find-the-brightest-area-in-Astronomical-image-and-video-using-Kadane-s-Algorithm
Using Kadane's Algorithm to find the brightest area in Astronomical images. Using concept of maximum contiguous subarray to find the area with highest sum and thus using opencv and finding the brightest area, applying on image and video.
eMahtab/maximum-subarray-sum
Find the maximum contiguous subarray sum
er-hiba/Maximum_Subarray_Sum
It finds the maximum sum of a continuous subarray in a given array of integers.
ZeyadWa/LeetCode-Problems
This repository is managed by LeetPush extension: https://github.com/husamahmud/LeetPush
agrimaswal/kadane
Given an array Arr[] of N integers. Find the contiguous sub-array(containing at least one number) which has the maximum sum and return its sum.