Status: IN
String manipulation problems (`reverse-only-letters`, `reverse-string-ii`) use the convert-mutate-join pattern: `list(s)` for mutability, in-place modification, then `"".join()` — the standard Python workaround for string immutability.
Source: entries/2026/06/06/reverse-string-ii-solution.md
JSON