Transform a space-separated phrase into lower camelCase by lowercasing the first word and capitalizing subsequent words.
Constraints
Example
```python
>>> to_camel_case("hello world")
'helloWorld'
>>> to_camel_case("camel case converter")
'camelCaseConverter'
>>> to_camel_case("alreadyCamel")
'alreadycamel'
```
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints