Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 480 Bytes

Question_492.md

File metadata and controls

22 lines (18 loc) · 480 Bytes

LeetCode Records - Question 492 Construct the Rectangle

Attempt 1: Start from the square root of area

class Solution {
    public int[] constructRectangle(int area) {
        int w = (int)Math.sqrt(area);
        int l = area / w;
        
        while (l * w != area) {
            w--;
            l = area / w;
        }

        return new int[]{ l, w };
    }
}
  • Runtime: 0 ms (Beats: 100.00%)
  • Memory: 40.47 MB (Beats: 94.75%)