Class Solution

  • All Implemented Interfaces:

    
    public final class Solution
    
                        

    963 - Minimum Area Rectangle II\.

    Medium

    You are given an array of points in the X-Y plane points where <code>pointsi = x<sub>i</sub>, y<sub>i</sub></code>.

    Return the minimum area of any rectangle formed from these points, with sides not necessarily parallel to the X and Y axes. If there is not any such rectangle, return 0.

    Answers within <code>10<sup>-5</sup></code> of the actual answer will be accepted.

    Example 1:

    Input: points = \[\[1,2],2,1,1,0,0,1]

    Output: 2.00000

    Explanation: The minimum area rectangle occurs at 1,2,2,1,1,0,0,1, with an area of 2.

    Example 2:

    Input: points = \[\[0,1],2,1,1,1,1,0,2,0]

    Output: 1.00000

    Explanation: The minimum area rectangle occurs at 1,0,1,1,2,1,2,0, with an area of 1.

    Example 3:

    Input: points = \[\[0,3],1,2,3,1,1,3,2,1]

    Output: 0

    Explanation: There is no possible rectangle to form from these points.

    Constraints:

    • 1 &lt;= points.length &lt;= 50

    • points[i].length == 2

    • <code>0 <= x<sub>i</sub>, y<sub>i</sub><= 4 * 10<sup>4</sup></code>

    • All the given points are unique.

    • 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 Double minAreaFreeRect(Array<IntArray> points)
      • Methods inherited from class java.lang.Object

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