Convert snake_case strings to camelCase with proper handling of underscores.
Constraints
Example
>>> snake_to_camel('hello_world')
'helloWorld'
>>> snake_to_camel('foo__bar')
'fooBar'
>>> snake_to_camel('_leading_trailing_')
'leadingTrailing'
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints