Rectangle Overlap | LeetCode 836 | Solution Explained

preview_player
Показать описание
Rectangle Overlap solution explained | 836. Rectangle Overlap
An axis-aligned rectangle is represented as a list [x1, y1, x2, y2], where (x1, y1) is the coordinate of its bottom-left corner, and (x2, y2) is the coordinate of its top-right corner. Its top and bottom edges are parallel to the X-axis, and its left and right edges are parallel to the Y-axis.
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 axis-aligned rectangles rec1 and rec2, return true if they overlap, otherwise return false.

#RectangleOverlap #OverlappedRectangles #LeetCode836 #LeetCode
Рекомендации по теме
Комментарии
Автор

I dont know why i was having a hard time picturing this so thank you so much for such a great explanation!

dongchoi
Автор

Thank you so much., one of the best explanations.

TheLearningLab
Автор

I attempted to identify positional overlaps, which turned out to be very complex. Additionally, I never anticipated the possibility of divergent thinking. Thank you. You stimulated my brain.

ruibinzhang
Автор

You explained all the cases so nicely!

vedantshinde