For the best experience, increase the window size or view on a laptop or desktop device
Last updated: Pending
Title | ||
|---|---|---|
Loading... | ||
1/1
No questions are available yet
For the best experience, increase the window size or view on a laptop or desktop device
Title | ||
|---|---|---|
Loading... | ||
Given the text of a code file that uses snake case, change all the variable names to camel case and return the new string. Any leading or trailing underscores should be preserved.
Example:
"__variable_one__ _variable_two variable_three" -> "__variableOne__ _variableTwo variableThree"
Given the text of a code file that uses snake case, change all the variable names to camel case and return the new string. Any leading or trailing underscores should be preserved.
Example:
"__variable_one__ _variable_two variable_three" -> "__variableOne__ _variableTwo variableThree"
Output