You are viewing a single comment's thread. Return to all comments →
return ''.join(c.lower() if c.isupper() else c.upper() if c.islower() else c for c in s)
Seems like cookies are disabled on this browser, please enable them to open this website
I agree to HackerRank's Terms of Service and Privacy Policy.
sWAP cASE
You are viewing a single comment's thread. Return to all comments →
return ''.join(c.lower() if c.isupper() else c.upper() if c.islower() else c for c in s)