Maximum Product Subarray
Try to solve the Maximum Product Subarray problem.
Statement
Given an integer array, nums
, find a subarray that has the largest product, and return the product.
Constraints:
nums.length
nums[i]
The product of any prefix or suffix of
nums
is guaranteed to fit in ainteger.
Example
Understand the problem
Let’s take a moment to make sure you’ve correctly understood the problem. The quiz below helps you check if you’re solving the correct problem:
Maximum Product Subarray
Given the following array, what is the maximum product we can obtain from a subarray?
nums
= [1, 2, 3, 0, 4]
4
6
8
2
Figure it out
We have a game for you to play. Rearrange the logical building blocks to develop a clearer understanding of how to solve this problem.
Try it yourself
Implement your solution in the following coding playground.
Need a nudge?
Explore these hints—each one is designed to guide you a step closer to the solution.
int MaxProduct(std::vector<int> nums) {// Replace this placeholder return statement with your codereturn -1;}