Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Creative category for Conversion into CamelCase by MBM_1607
def to_camel_case(name):
return "".join([x.capitalize() for x in name.split("_")])
Aug. 12, 2018