Maximum Product Subarray
Given an array Arr[] that contains N integers (may be positive, negative or zero). Find the product of the maximum product subarray. Example 1: Input: N = 5 Arr[] = {6, -3, -10, 0, 2} Output: 180 Explanation: Subarray with maximum product is [6, -3, ...
May 10, 20233 min read23