Split a camelCase string into a list of lowercase words.
Constraints
Example
>>> split_on_camel_case("helloWorld")
['hello', 'world']
>>> split_on_camel_case("thisIsATest")
['this', 'is', 'a', 'test']
>>> split_on_camel_case("camel")
['camel']
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints