Status: IN
The solution manually constructs title case (`w[0].upper() + w[1:].lower()`) rather than using `str.title()` or `str.capitalize()`, because the length-based conditional requires a branch regardless.
Source: entries/2026/06/06/capitalize-the-title-solution.md
JSON