Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Secret Message by sebastian009
def find_message(text):
result = ""
for ch in text:
if ch == ch.upper() and ch.isalpha():
result += ch
return result
Oct. 16, 2016