Medium
Given an integer array nums, find a contiguous non-empty subarray that has the largest product, and return the product.
nums
Input: nums = [2,3,-2,4] Output: 6
Input: nums = [-2,0,-1] Output: 0