#628

Maximum Product of Three Numbers

easy · verified · 45.8% accepted · 4,526 likes · top 29%

array · math · sorting

⊣ practice⊣ quiz⊣ open on leetcode ↗

Description

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

Solution