
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.
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.