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