Given N axis-aligned rectangles where N > 0, determine if they all together form an exact cover of a rectangular region. Each rectangle is represented as a bottom-left point and a top-right point. For ...
// TODO 3: Write a parameterized constructor that accepts width and height // TODO 4: Write a getArea() method that returns width * height // TODO 5: Write a getPerimeter() method that returns 2 * ...