LeetCode 492: Construct the Rectangle Solution in Python – A Step-by-Step Guide

Imagine you’re an architect handed a blueprint request: design a rectangle with an area of 12 square units, but make the length and width as close as possible—like a near-square. You could try 12x1 (too long), 6x2 (better), or 4x3 (closest!), so you pick [4, 3]. That’s the creative challenge of LeetCode 492: Construct the Rectangle, an easy-level problem that’s a fun dive into number factoring and optimization. Using Python, we’ll solve it two ways: the Best Solution, a square root optimization with factor search that’s fast and clever, and an Alternative Solution, a brute force factor enumeration that’s intuitive but less efficient. With examples, code breakdowns, and a friendly tone, this guide will help you craft that rectangle—whether you’re new to coding or shaping your skills. Let’s draft that blueprint and dive in!

What Is LeetCode 492: Construct the Rectangle?

Section link icon

In LeetCode 492: Construct the Rectangle, you’re given an integer area, representing the total area of a rectangle, and your task is to return a list [L, W] where L (length) and W (width) are positive integers whose product equals area, and L is as close as possible to W while L ≥ W. For example, with area = 12, possible pairs include [12, 1], [6, 2], and [4, 3], and [4, 3] is the closest pair, so you return [4, 3]. It’s like designing a rectangular room with a fixed floor space, aiming for a shape that’s nearly square for balance.

Problem Statement

  • Input: area (int)—desired area of the rectangle.
  • Output: List[int]—[L, W] where L × W = area, L ≥ W, and L - W is minimized.
  • Rules:
    • L and W are positive integers.
    • L × W = area.
    • Among valid pairs, choose L, W where L is closest to W.

Constraints

  • \( 1 \leq area \leq 10^7 \).

Examples to Get Us Started

  • Input: area = 4
    • Output: [2,2] (Pairs: [4,1], [2,2]; [2,2] is closest).
  • Input: area = 12
    • Output: [4,3] (Pairs: [12,1], [6,2], [4,3]; [4,3] is closest).
  • Input: area = 1
    • Output: [1,1] (Only pair: [1,1]).

Understanding the Problem: Shaping the Space

Section link icon

To solve LeetCode 492: Construct the Rectangle in Python, we need to find two positive integers L and W whose product equals area, with L ≥ W, and the difference L - W minimized—essentially, the pair closest to a square. A naive approach—testing all factor pairs—could be O(n), slow for area = 10^7. The key? Start from the square root of the area and search downward for the first valid width, ensuring efficiency with O(√n) time. We’ll explore:

  • Best Solution (Square Root Optimization with Factor Search): O(√n) time, O(1) space—fast and optimal (n = area).
  • Alternative Solution (Brute Force Factor Enumeration): O(n) time, O(1) space—simple but less efficient.

Let’s dive into the square root solution—it’s the architect’s precise ruler we need.

Alternative Solution: Brute Force Factor Enumeration

Section link icon

Why an Alternative Approach?

The brute force factor enumeration—O(n) time, O(1) space—tests all possible widths from 1 to area, computes the corresponding length, and tracks the pair with the smallest L - W difference. It’s slower but intuitive, like measuring every possible room size by hand. Good for small areas or learning!

How It Works

  • Step 1: Iterate W from 1 to area.
  • Step 2: If W is a factor (area % W == 0):
    • Compute L = area / W.
    • If L ≥ W, update min difference pair.
  • Step 3: Return best [L, W].
  • Why It Works:
    • Checks all factors, finds closest pair by exhaustive search.

Step-by-Step Example

Example: area = 12

  • W = 1: L = 12, diff = 11, pair = [12, 1].
  • W = 2: L = 6, diff = 4, pair = [6, 2].
  • W = 3: L = 4, diff = 1, pair = [4, 3].
  • W = 4: L = 3, L < W, skip.
  • Result: [4, 3] (min diff = 1).

Code for Brute Force

class Solution:
    def constructRectangle(self, area: int) -> List[int]:
        min_diff = float('inf')
        best_pair = [area, 1]

        # Step 1-2: Enumerate all factors
        for w in range(1, area + 1):
            if area % w == 0:
                l = area // w
                if l >= w:
                    diff = l - w
                    if diff < min_diff:
                        min_diff = diff
                        best_pair = [l, w]
            if w > l:  # Early break if W exceeds L
                break

        # Step 3: Return best pair
        return best_pair
  • Line 4-5: Init min_diff and default pair.
  • Line 8-15: Check each W, update if better diff found.
  • Line 18: Return best pair.
  • Time Complexity: O(n)—tests all numbers up to area.
  • Space Complexity: O(1)—few variables.

It’s a slow blueprint drafter!

Comparing the Two Solutions

Section link icon
  • Square Root Optimization (Best):
    • Pros: O(√n), fast, efficient.
    • Cons: Requires math insight.
  • Brute Force (Alternative):
    • Pros: O(n), intuitive.
    • Cons: Much slower for large n.

Square root wins for efficiency.

Edge Cases and Examples

Section link icon
  • Input: area=1 → [1,1].
  • Input: area=2 → [2,1].
  • Input: area=100 → [10,10].

Square root handles all perfectly.

Complexity Recap

Section link icon
  • Square Root: Time O(√n), Space O(1).
  • Brute Force: Time O(n), Space O(1).

Square root’s the champ.

Key Takeaways

Section link icon
  • Square Root: Optimize with math.
  • Brute Force: Test all pairs.
  • Python Tip: Math speeds—see [Python Basics](/python/basics).

Final Thoughts: Craft That Rectangle

Section link icon

LeetCode 492: Construct the Rectangle in Python is a blueprint-drafting number quest. Square root optimization is your fast ruler, while brute force is a slow sketcher. Want more number challenges? Try LeetCode 509: Fibonacci Number or LeetCode 204: Count Primes. Ready to design some rectangles? Head to Solve LeetCode 492 on LeetCode and craft it today—your coding skills are design-ready!