Convert Snake Case to Camel Case

Write a function to convert a string from snake_case to camelCase.
        
       Input:-hello_world
       Input Description: Input a snake_case string. 
       Output: helloWorld
       Output Description: Output the camelCase string. 
       Constraints: 1 <= string length <= 10^6
       Explanation: 

Loading...