my-solutions/problems/0223-rectangle-area
2022-12-31 12:03:24 +05:00
..
main.rb Add zeros to problem numbers to fix sorting 2022-12-31 12:03:24 +05:00
readme.md Add zeros to problem numbers to fix sorting 2022-12-31 12:03:24 +05:00
test.rb Add zeros to problem numbers to fix sorting 2022-12-31 12:03:24 +05:00

223. Rectangle area

Leetcode

Given the coordinates of two rectilinear rectangles in a 2D plane, return the total area covered by the two rectangles.

The first rectangle is defined by its bottom-left corner (ax1, ay1) and its top-right corner (ax2, ay2).

The second rectangle is defined by its bottom-left corner (bx1, by1) and its top-right corner (bx2, by2).