Update to latest version #4

Merged
Ta180m merged 123 commits from master into master 2020-06-18 19:15:27 +00:00
Showing only changes of commit 78cc5471f1 - Show all commits

View file

@ -21,14 +21,14 @@ Rectangle newRect = new Rectangle(x, y, width, height);
The `Rectangle` class supports numerous useful methods.
```java
firstRect.intersects(secondRect)` checks if two rectangles intersect.
```
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.