LeetCode 836. Rectangle Overlap
A rectangle is represented as a list [x1, y1, x2, y2]
, where (x1, y1)
are the coordinates of its bottom-left corner, and (x2, y2)
are the coordinates of its top-right corner.
Two rectangles overlap if the area of their intersection is positive. To be clear, two rectangles that only touch at the corner or edges do not overlap.
Given two rectangles, return whether they overlap.
Example 1:
1 | Input: rec1 = [0,0,2,2], rec2 = [1,1,3,3] |
Example 2:
1 | Input: rec1 = [0,0,1,1], rec2 = [1,0,2,1] |
Notes:
- Both rectangles
rec1
andrec2
are lists of 4 integers. - All coordinates in rectangles will be between
-10^9
and10^9
.
判断两个矩形是否有相交,反过来思考什么条件下两个矩形不相交比较简单。如果
- 一个矩形的下边比另一个上边大,那么它们不相交
- 一个矩形的左边比另一个右边大,那么它们不相交
反之它们相交。
1 | class Solution { |