diff --git a/content/3_Bronze/Rect_Geo.md b/content/3_Bronze/Rect_Geo.md index 71057c9..b00d805 100644 --- a/content/3_Bronze/Rect_Geo.md +++ b/content/3_Bronze/Rect_Geo.md @@ -21,13 +21,15 @@ Rectangle newRect = new Rectangle(x, y, width, height); The `Rectangle` class supports numerous useful methods. - - `firstRect.intersects(secondRect)` checks if two rectangles intersect. +```java +firstRect.intersects(secondRect)` checks if two rectangles intersect. - - `firstRect.union(secondRect)` returns a rectangle representing the union of two rectangles. +firstRect.union(secondRect)` returns a rectangle representing the union of two rectangles. - - `firstRect.contains(x, y)` checks whether the integer point (x,y) exists in firstRect. +firstRect.contains(x, y)` checks whether the integer point (x,y) exists in firstRect. - - `firstRect.intersect(secondRect)` returns a rectangle representing the intersection of two rectangles. +firstRect.intersect(secondRect)` returns a rectangle representing the intersection of two rectangles. +``` This class can often lessen the implementation needed in a lot of bronze problems and codeforces problems.