empty-prefix-never-compared

Status: IN

`is_prefix_string` checks equality after appending each word, so the empty string is never compared; this is safe given LeetCode's `1 <= s.length` constraint but would incorrectly return `False` for `s = ""`

Source: entries/2026/06/06/check-if-string-is-a-prefix-of-array-solution.md

JSON