You are viewing a single comment's thread. Return to all comments →
def solve(s): return ' '.join(i.capitalize() for i in s.split(' '))
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.
Capitalize!
You are viewing a single comment's thread. Return to all comments →
Precise Snippet code ->It Clears all test cases
def solve(s): return ' '.join(i.capitalize() for i in s.split(' '))