Brute Force Sudoku Validation: Simple Yet Smart
tl;dr: Sometimes, the best way to solve a problem is to do exactly what it asks.
Brute Force Sudoku Validation: Simple Yet Smart
Sometimes, the best way to solve a problem is to do exactly what it asks.
Take Sudoku validation: you have a 9x9 grid, and you need to check if it’s valid. But what does “valid” mean?
- No row can have duplicate numbers (1-9).
- No column can have duplicate numbers.
- No 3×3 box (subgrid) can have duplicate numbers.
How do we check that? Well, the most direct way is just to check each condition separately—one by one. This is a classic brute-force approach, but in this case, brute force isn’t dumb—it’s methodical.
🚀 Thought Process: Breaking Down the Problem
Whenever you face a validation problem like this, always break it down into independent parts:
- Check rows → Each row should have unique numbers.
- Check columns → Each column should have unique numbers.
- Check 3×3 boxes → Each 3×3 grid should have unique numbers.
Each of these steps is independent, meaning we can solve them separately and combine the results.
🛠️ Approach 1: Brute Force (Three-Pass Method)
Step 1: Validating Rows
To check rows, we scan each row and use a hash set to track numbers. If a number appears twice, it’s invalid.
Step 2: Validating Columns
The only change is flipping (i, j) → (j, i) to scan columns instead of rows.
Step 3: Validating 3×3 Boxes
This is trickier because we’re not iterating row-wise or column-wise, but rather in small 3×3 blocks.
📌 Why i * 3 + k
and j * 3 + l
?
This formula maps each box’s coordinates to the overall grid.
Box (i, j) | Mapped Grid Range |
---|---|
(0,0) | Rows 0-2, Cols 0-2 |
(0,1) | Rows 0-2, Cols 3-5 |
(1,0) | Rows 3-5, Cols 0-2 |
(2,2) | Rows 6-8, Cols 6-8 |
💡 So far, we have looped over the grid 3 times. Can we do better?
⚡ Optimized Approach: One-Pass Validation
Instead of looping three times, what if we check all three conditions simultaneously in a single pass?
We use three sets of hash sets:
rowSets[i]
→ For the i-th rowcolSets[j]
→ For the j-th columnboxSets[boxIndex]
→ For the k-th 3×3 box
🚀 Why is this faster?
✅ Only one pass over the grid.
✅ No redundant iterations.
✅ Each lookup is O(1) in a set.
⏳ Time Complexity: O(1) (since it’s a fixed 9×9 grid).
📌 Space Complexity: O(1) (three sets of size 9 is negligible).
🚀 Ultimate Optimization: Boolean Arrays
Since Sudoku numbers are 1-9, we don’t need hash sets. A boolean array is faster!
🚀 Boolean arrays are 2x faster than sets because:
✔ O(1) direct index access (vs. O(1) hash lookup with extra memory overhead).
✔ No hashing required (direct memory access).
📌 Final Thoughts: When to Use Each Approach?
Approach | Pros | Cons |
---|---|---|
Brute Force (3 loops) | Easy to understand, straightforward | Loops over the board 3 times |
One-Pass HashSets | More efficient, single loop | Uses extra space for 3 sets |
Boolean Arrays | Fastest, minimal memory | Slightly harder to read |
💡 What’s Next?
📌 Can you modify this to solve the Sudoku instead of just validating it? Try it out! 🚀