snake to camel write a function snaketocamel that takes in a snake cased string and returns a pascalcased version of the string. snakecase is where each word is separated with underscores (``). pascalcase is a string where the first char of each word is capital, all other chars lowercase.