valid-word-square-single-direction-sufficient

Status: IN

Iterating only over existing characters in rows (not separately over columns) is sufficient to validate the word square because any extra column character at `(j, i)` would be caught when row `j` is iterated as the outer loop.

Source: entries/2026/06/06/valid-word-square-solution.md

JSON