You are viewing a single comment's thread. Return to all comments →
def camelcase(s):
# Write your code here count = 1 for i in s: if i.isupper(): count+=1 return count
Seems like cookies are disabled on this browser, please enable them to open this website
An unexpected error occurred. Please try reloading the page. If problem persists, please contact support@hackerrank.com
CamelCase
You are viewing a single comment's thread. Return to all comments →
def camelcase(s):