Indlæser opgaven…
In code, names are often written by joining words together and capitalizing the start of each word. Write camel_case, which takes a string s, capitalizes the first letter of every word, and removes the spaces between them. The words in the original string are separated by single spaces.
"test case""TestCase""camel case method""CamelCaseMethod""say hello""SayHello"def camel_case(s: str) -> str:
Log ind for at se indsendelseshistorik
Log indLog ind for at bruge AI-mentor
Log ind"test case""TestCase""camel case method""CamelCaseMethod""say hello""SayHello""""""hello""Hello""test casetest case""TestCasetestCase"