Class Solution

  • All Implemented Interfaces:

    
    public final class Solution
    
                        

    628 - 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:

    • <code>3 <= nums.length <= 10<sup>4</sup></code>

    • -1000 &lt;= nums[i] &lt;= 1000

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
      Solution()
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      final Integer maximumProduct(IntArray nums)
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait