You are viewing a single comment's thread. Return to all comments →
Python solution:
def camelcase(s): cnt = 1; for x in s: if x.isupper(): cnt = cnt + 1 return cnt
Seems like cookies are disabled on this browser, please enable them to open this website
CamelCase
You are viewing a single comment's thread. Return to all comments →
Python solution: