628. Maximum Product Of Three Numbers
Array Math Sorting
Problem - Maximum Product Of Three Numbers
Easy
Given an integer array nums
, find three numbers whose product is maximum and return the maximum product.
Example 1:
Input: nums = [1,2,3] Output: 6
Example 2:
Input: nums = [1,2,3,4] Output: 24
Example 3:
Input: nums = [-1,-2,-3] Output: -6
Constraints:
3 <= nums.length <= 104
-1000 <= nums[i] <= 1000
Solutions
1 2 3 4 5 6 7 8 9 10 |
|
Submission Stats:
- Runtime: 12 ms (75.65%)
- Memory: 18.6 MB (60.44%)