0628. Maximum Product of Three Numbers
https://leetcode.com/problems/maximum-product-of-three-numbers
Description
Given an integer array nums
, find three numbers whose product is maximum and return the maximum product.
Example 1:
Example 2:
Example 3:
Constraints:
3 <= nums.length <= 104
-1000 <= nums[i] <= 1000
ac
Last updated