reverse-str-ii-relies-on-slice-clamping

Status: IN

`reverseStr` has no explicit bounds check for the final partial window — it relies on Python's slice clamping behavior (`chars[i:i+k]` naturally covers only remaining characters when fewer than `k` are left).

Source: entries/2026/06/06/reverse-string-ii-solution.md

JSON