Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Secret Message by Bartek.Knobel
def find_message(text):
tekst = ""
big = "QWERTYUIOPLKJHGFDSAZXCVBNM"
for ch in text:
if ch in big:
tekst = tekst + ch
"""Find a secret message"""
return tekst
Oct. 21, 2016