You are viewing a single comment's thread. Return to all comments →
my python solution
def camelcase(s):
tot = 1 for char in s: if char.isupper(): tot += 1 return tot
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 →
my python solution
def camelcase(s):