transpose-empty-input-raises

Status: IN

`transpose([])` raises `IndexError` because the code unconditionally accesses `matrix[0]` to determine the column count; this is safe under LeetCode's constraint `m >= 1`.

Source: entries/2026/06/06/transpose-matrix-solution.md

JSON