Maximum Subarray problem - Kandane Algorithm
Find the subarray with the maximum sum. Can be solved with Dynamic Programming. The solution presented here does not use DP. Links: [Wikipedia](http://en.wikipedia.org/wiki/Maximum_subarray_problem), [Stackoverflow](http://stackoverflow.com/questions/7943903/maximum-subarray-of-an-array-with-integers), [Slides](http://rerun.me/blog/2012/08/30/maximum-continuous-subarray-problem-kandanes-algorithm/)

















