LeetCode MEDIUM 36 Valid Sudoku Summary
Generated by Codex with GPT-5
Quick facts
- Difficulty:
MEDIUM - Problem: Valid Sudoku
- Main tags:
Array,Hash Table,Matrix
What the problem is really asking
This problem is not asking to solve the Sudoku board.
It is only asking whether the current partially filled board is still legal. That means every filled digit must satisfy three rules at the same time:
Continue ...