easyArrayMathSorting 0 views

Maximum Product of Three Numbers

Given an integer array nums, find three numbers whose product is maximum and return the maximum product.

Given an integer array nums, find three numbers whose product is maximum and return the maximum product.

Maximum Product of Three Numbers diagram

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 <= 10^4
  • -1000 <= nums[i] <= 1000

Hints

No hints yet.

Companies

No companies reported yet.

Discussion

Sign in to join the discussion.

Loading discussion...

Test results

No test cases yet.