length-of-last-word-o-n-space

Status: IN

`length_of_last_word` runs in O(n) space because `split()` materializes the full word list, not just the last word.

Source: entries/2026/06/06/length-of-last-word-solution.md

JSON