Package g0201_0300.s0223_rectangle_area
Class Solution
java.lang.Object
g0201_0300.s0223_rectangle_area.Solution
223 - Rectangle Area.<p>Medium</p>
<p>Given the coordinates of two <strong>rectilinear</strong> rectangles in a 2D plane, return <em>the total area covered by the two rectangles</em>.</p>
<p>The first rectangle is defined by its <strong>bottom-left</strong> corner <code>(ax1, ay1)</code> and its <strong>top-right</strong> corner <code>(ax2, ay2)</code>.</p>
<p>The second rectangle is defined by its <strong>bottom-left</strong> corner <code>(bx1, by1)</code> and its <strong>top-right</strong> corner <code>(bx2, by2)</code>.</p>
<p><strong>Example 1:</strong></p>
<p><img src="https://assets.leetcode.com/uploads/2021/05/08/rectangle-plane.png" alt="Rectangle Area" /></p>
<p><strong>Input:</strong> ax1 = -3, ay1 = 0, ax2 = 3, ay2 = 4, bx1 = 0, by1 = -1, bx2 = 9, by2 = 2</p>
<p><strong>Output:</strong> 45</p>
<p><strong>Example 2:</strong></p>
<p><strong>Input:</strong> ax1 = -2, ay1 = -2, ax2 = 2, ay2 = 2, bx1 = -2, by1 = -2, bx2 = 2, by2 = 2</p>
<p><strong>Output:</strong> 16</p>
<p><strong>Constraints:</strong></p>
<ul>
<li><code>-10<sup>4</sup> <= ax1, ay1, ax2, ay2, bx1, by1, bx2, by2 <= 10<sup>4</sup></code></li>
</ul>
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionint
computeArea
(int ax1, int ay1, int ax2, int ay2, int bx1, int by1, int bx2, int by2)
-
Constructor Details
-
Solution
public Solution()
-
-
Method Details
-
computeArea
public int computeArea(int ax1, int ay1, int ax2, int ay2, int bx1, int by1, int bx2, int by2)
-