Camels vs. snakes

Report a typo

Implement a function that converts text written in snake style into camel style.

Sample input string: A_modern_programming_language_that_makes_developers_happier
Output string: AModernProgrammingLanguageThatMakesDevelopersHappier

Write a program in Kotlin
fun getCamelStyleString(inputString: String): String {
// put your code here
return result
}
___

Create a free account to access the full topic