You are given a string, docString, representing a line of documentation for a programming language: • Function and variable names, as well as constants, are enclosed in backticks (* ) • Each quoted sentence can contain several items (functions, variables, and constants) separated by space. • Function and variable names are written in snake case. Snake case means that after the first word in the name, additional words are separated by an underscore - Each word consists only of lowercase English letters. • Constants are written in upper case. Upper case format is the same as snake case except that each word consists only of uppercase English letters. Your task is to convert all function and variable names in the docstring from snake case to camel case. Constants should not be changed.
Check out your Company Bowl for anonymous work chats.