In this problem (Maximum subarray sum DP problem), sir has used botttom’s up approach to solve it. i.e he has used a loop to traverse and then keep track of max sum and just as we do in kaden’s algorithm, he has implememnted the DP solution. My doubt is that, how is this solution any different than the Kaden’s algorithm?
Also, is there a top down recursive solution to this problem? if yes, please share the code