Conversion into CamelCase

Conversion into CamelCase

Your mission is to convert the name of a function from the Python format (for example "my_function_name") into CamelCase ("MyFunctionName") where the first char of every word is in uppercase and all words are concatenated without any intervening characters.

example

Input: A function name as a string (string).

Output: The same string (string)...

You should be an authorized user in order to see the full description and start solving this mission.
19