<p>You are given an array of points in the <strong>X-Y</strong> plane <code>points</code> where <code>points[i] = [x<sub>i</sub>, y<sub>i</sub>]</code>.</p> <p>Return <em>the minimum area of a rectangle formed from these points, with sides parallel to the X and Y axes</em>. If there is not any such rectangle, return <code>0</code>.</p> <p> </p> <p><strong>Example 1:</strong></p> <img alt="" src="https://assets.leetcode.com/uploads/2021/08/03/rec1.JPG" style="width: 500px; height: 447px;" /> <pre> <strong>Input:</strong> points = [[1,1],[1,3],[3,1],[3,3],[2,2]] <strong>Output:</strong> 4 </pre> <p><strong>Example 2:</strong></p> <img alt="" src="https://assets.leetcode.com/uploads/2021/08/03/rec2.JPG" style="width: 500px; height: 477px;" /> <pre> <strong>Input:</strong> points = [[1,1],[1,3],[3,1],[3,3],[4,1],[4,3]] <strong>Output:</strong> 2 </pre> <p> </p> <p><strong>Constraints:</strong></p> <ul> <li><code>1 <= points.length <= 500</code></li> <li><code>points[i].length == 2</code></li> <li><code>0 <= x<sub>i</sub>, y<sub>i</sub> <= 4 * 10<sup>4</sup></code></li> <li>All the given points are <strong>unique</strong>.</li> </ul>