All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g0801_0900.s0836_rectangle_overlap.Solution Maven / Gradle / Ivy

There is a newer version: 1.37
Show newest version
package g0801_0900.s0836_rectangle_overlap;

// #Easy #Math #Geometry

public class Solution {
    public boolean isRectangleOverlap(int[] rec1, int[] rec2) {
        return rec1[0] < rec2[2] && rec2[0] < rec1[2] && rec1[1] < rec2[3] && rec2[1] < rec1[3];
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy