leetcode1725. 可以形成最大正方形的矩形数目(easy)

可以形成最大正方形的矩形数目


力扣链接

代码

class Solution {
    public int countGoodRectangles(int[][] rectangles) {
        int res = 0;
        int maxLen = 0;
        for (int[] rectangle : rectangles) {
            int l = rectangle[0];
            int w = rectangle[1];
            int min = Math.min(l, w);
            if (min == maxLen) {
                ++res;
            } else if (maxLen < min) {
                maxLen = min;
                res = 1;
            }
        }
        return res;
    }
}
上一篇:WPF自定义控件之图形解锁控件 ScreenUnLock


下一篇:基于jQuery实现简单的js模块化