You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Basically to undertand this solution, one should have idea on Kadanes Algorithm which is a DP approach to solve Maximum Subarray Sum.
// This question just replaced sum with product and we know that we got headache with the negative values if you have understood the question properly.
// So I swapped min and max values at current iteration of negative value.