we have two examples of rectangle:
public static Rectangle rect1 = new Rectangle(20, 300, 400, 160);
public static Rectangle rect2 = new Rectangle(150, 60, 230, 450);
The problem is to find an algorithm that finds all intersection points of these two rectangles
You can get the intersection points using inbuilt methods
intersection