Transform a sentence so that the first letter of each word is uppercase and the rest lowercase.
Constraints
Example
```python
>>> capitalize_first_letter("hello world")
'Hello World'
>>> capitalize_first_letter("heLLo WoRLD")
'Hello World'
>>> capitalize_first_letter(" hello world ")
' Hello World '
>>> capitalize_first_letter("")
''
```
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints